2 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3 * Written by Alex Tomas <alex@clusterfs.com>
5 * Architecture independence:
6 * Copyright (c) 2005, Bull S.A.
7 * Written by Pierre Peiffer <pierre.peiffer@bull.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public Licens
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
24 * Extents support for EXT4
27 * - ext4*_error() should be used in some situations
28 * - analyze all BUG()/BUG_ON(), use -EIO where appropriate
29 * - smart tree reduction
32 #include <linux/module.h>
34 #include <linux/time.h>
35 #include <linux/jbd2.h>
36 #include <linux/highuid.h>
37 #include <linux/pagemap.h>
38 #include <linux/quotaops.h>
39 #include <linux/string.h>
40 #include <linux/slab.h>
41 #include <linux/falloc.h>
42 #include <asm/uaccess.h>
43 #include <linux/fiemap.h>
44 #include "ext4_jbd2.h"
45 #include "ext4_extents.h"
50 * combine low and high parts of physical block number into ext4_fsblk_t
52 ext4_fsblk_t
ext_pblock(struct ext4_extent
*ex
)
56 block
= le32_to_cpu(ex
->ee_start_lo
);
57 block
|= ((ext4_fsblk_t
) le16_to_cpu(ex
->ee_start_hi
) << 31) << 1;
63 * combine low and high parts of a leaf physical block number into ext4_fsblk_t
65 ext4_fsblk_t
idx_pblock(struct ext4_extent_idx
*ix
)
69 block
= le32_to_cpu(ix
->ei_leaf_lo
);
70 block
|= ((ext4_fsblk_t
) le16_to_cpu(ix
->ei_leaf_hi
) << 31) << 1;
75 * ext4_ext_store_pblock:
76 * stores a large physical block number into an extent struct,
77 * breaking it into parts
79 void ext4_ext_store_pblock(struct ext4_extent
*ex
, ext4_fsblk_t pb
)
81 ex
->ee_start_lo
= cpu_to_le32((unsigned long) (pb
& 0xffffffff));
82 ex
->ee_start_hi
= cpu_to_le16((unsigned long) ((pb
>> 31) >> 1) & 0xffff);
86 * ext4_idx_store_pblock:
87 * stores a large physical block number into an index struct,
88 * breaking it into parts
90 static void ext4_idx_store_pblock(struct ext4_extent_idx
*ix
, ext4_fsblk_t pb
)
92 ix
->ei_leaf_lo
= cpu_to_le32((unsigned long) (pb
& 0xffffffff));
93 ix
->ei_leaf_hi
= cpu_to_le16((unsigned long) ((pb
>> 31) >> 1) & 0xffff);
96 static int ext4_ext_truncate_extend_restart(handle_t
*handle
,
102 if (!ext4_handle_valid(handle
))
104 if (handle
->h_buffer_credits
> needed
)
106 err
= ext4_journal_extend(handle
, needed
);
109 err
= ext4_truncate_restart_trans(handle
, inode
, needed
);
111 * We have dropped i_data_sem so someone might have cached again
112 * an extent we are going to truncate.
114 ext4_ext_invalidate_cache(inode
);
124 static int ext4_ext_get_access(handle_t
*handle
, struct inode
*inode
,
125 struct ext4_ext_path
*path
)
128 /* path points to block */
129 return ext4_journal_get_write_access(handle
, path
->p_bh
);
131 /* path points to leaf/index in inode body */
132 /* we use in-core data, no need to protect them */
142 static int ext4_ext_dirty(handle_t
*handle
, struct inode
*inode
,
143 struct ext4_ext_path
*path
)
147 /* path points to block */
148 err
= ext4_handle_dirty_metadata(handle
, inode
, path
->p_bh
);
150 /* path points to leaf/index in inode body */
151 err
= ext4_mark_inode_dirty(handle
, inode
);
156 static ext4_fsblk_t
ext4_ext_find_goal(struct inode
*inode
,
157 struct ext4_ext_path
*path
,
160 struct ext4_inode_info
*ei
= EXT4_I(inode
);
161 ext4_fsblk_t bg_start
;
162 ext4_fsblk_t last_block
;
163 ext4_grpblk_t colour
;
164 ext4_group_t block_group
;
165 int flex_size
= ext4_flex_bg_size(EXT4_SB(inode
->i_sb
));
169 struct ext4_extent
*ex
;
170 depth
= path
->p_depth
;
172 /* try to predict block placement */
173 ex
= path
[depth
].p_ext
;
175 return ext_pblock(ex
)+(block
-le32_to_cpu(ex
->ee_block
));
177 /* it looks like index is empty;
178 * try to find starting block from index itself */
179 if (path
[depth
].p_bh
)
180 return path
[depth
].p_bh
->b_blocknr
;
183 /* OK. use inode's group */
184 block_group
= ei
->i_block_group
;
185 if (flex_size
>= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME
) {
187 * If there are at least EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME
188 * block groups per flexgroup, reserve the first block
189 * group for directories and special files. Regular
190 * files will start at the second block group. This
191 * tends to speed up directory access and improves
194 block_group
&= ~(flex_size
-1);
195 if (S_ISREG(inode
->i_mode
))
198 bg_start
= (block_group
* EXT4_BLOCKS_PER_GROUP(inode
->i_sb
)) +
199 le32_to_cpu(EXT4_SB(inode
->i_sb
)->s_es
->s_first_data_block
);
200 last_block
= ext4_blocks_count(EXT4_SB(inode
->i_sb
)->s_es
) - 1;
203 * If we are doing delayed allocation, we don't need take
204 * colour into account.
206 if (test_opt(inode
->i_sb
, DELALLOC
))
209 if (bg_start
+ EXT4_BLOCKS_PER_GROUP(inode
->i_sb
) <= last_block
)
210 colour
= (current
->pid
% 16) *
211 (EXT4_BLOCKS_PER_GROUP(inode
->i_sb
) / 16);
213 colour
= (current
->pid
% 16) * ((last_block
- bg_start
) / 16);
214 return bg_start
+ colour
+ block
;
218 * Allocation for a meta data block
221 ext4_ext_new_meta_block(handle_t
*handle
, struct inode
*inode
,
222 struct ext4_ext_path
*path
,
223 struct ext4_extent
*ex
, int *err
)
225 ext4_fsblk_t goal
, newblock
;
227 goal
= ext4_ext_find_goal(inode
, path
, le32_to_cpu(ex
->ee_block
));
228 newblock
= ext4_new_meta_blocks(handle
, inode
, goal
, NULL
, err
);
232 static inline int ext4_ext_space_block(struct inode
*inode
, int check
)
236 size
= (inode
->i_sb
->s_blocksize
- sizeof(struct ext4_extent_header
))
237 / sizeof(struct ext4_extent
);
239 #ifdef AGGRESSIVE_TEST
247 static inline int ext4_ext_space_block_idx(struct inode
*inode
, int check
)
251 size
= (inode
->i_sb
->s_blocksize
- sizeof(struct ext4_extent_header
))
252 / sizeof(struct ext4_extent_idx
);
254 #ifdef AGGRESSIVE_TEST
262 static inline int ext4_ext_space_root(struct inode
*inode
, int check
)
266 size
= sizeof(EXT4_I(inode
)->i_data
);
267 size
-= sizeof(struct ext4_extent_header
);
268 size
/= sizeof(struct ext4_extent
);
270 #ifdef AGGRESSIVE_TEST
278 static inline int ext4_ext_space_root_idx(struct inode
*inode
, int check
)
282 size
= sizeof(EXT4_I(inode
)->i_data
);
283 size
-= sizeof(struct ext4_extent_header
);
284 size
/= sizeof(struct ext4_extent_idx
);
286 #ifdef AGGRESSIVE_TEST
295 * Calculate the number of metadata blocks needed
296 * to allocate @blocks
297 * Worse case is one block per extent
299 int ext4_ext_calc_metadata_amount(struct inode
*inode
, sector_t lblock
)
301 struct ext4_inode_info
*ei
= EXT4_I(inode
);
304 idxs
= ((inode
->i_sb
->s_blocksize
- sizeof(struct ext4_extent_header
))
305 / sizeof(struct ext4_extent_idx
));
308 * If the new delayed allocation block is contiguous with the
309 * previous da block, it can share index blocks with the
310 * previous block, so we only need to allocate a new index
311 * block every idxs leaf blocks. At ldxs**2 blocks, we need
312 * an additional index block, and at ldxs**3 blocks, yet
313 * another index blocks.
315 if (ei
->i_da_metadata_calc_len
&&
316 ei
->i_da_metadata_calc_last_lblock
+1 == lblock
) {
317 if ((ei
->i_da_metadata_calc_len
% idxs
) == 0)
319 if ((ei
->i_da_metadata_calc_len
% (idxs
*idxs
)) == 0)
321 if ((ei
->i_da_metadata_calc_len
% (idxs
*idxs
*idxs
)) == 0) {
323 ei
->i_da_metadata_calc_len
= 0;
325 ei
->i_da_metadata_calc_len
++;
326 ei
->i_da_metadata_calc_last_lblock
++;
331 * In the worst case we need a new set of index blocks at
332 * every level of the inode's extent tree.
334 ei
->i_da_metadata_calc_len
= 1;
335 ei
->i_da_metadata_calc_last_lblock
= lblock
;
336 return ext_depth(inode
) + 1;
340 ext4_ext_max_entries(struct inode
*inode
, int depth
)
344 if (depth
== ext_depth(inode
)) {
346 max
= ext4_ext_space_root(inode
, 1);
348 max
= ext4_ext_space_root_idx(inode
, 1);
351 max
= ext4_ext_space_block(inode
, 1);
353 max
= ext4_ext_space_block_idx(inode
, 1);
359 static int ext4_valid_extent(struct inode
*inode
, struct ext4_extent
*ext
)
361 ext4_fsblk_t block
= ext_pblock(ext
);
362 int len
= ext4_ext_get_actual_len(ext
);
364 return ext4_data_block_valid(EXT4_SB(inode
->i_sb
), block
, len
);
367 static int ext4_valid_extent_idx(struct inode
*inode
,
368 struct ext4_extent_idx
*ext_idx
)
370 ext4_fsblk_t block
= idx_pblock(ext_idx
);
372 return ext4_data_block_valid(EXT4_SB(inode
->i_sb
), block
, 1);
375 static int ext4_valid_extent_entries(struct inode
*inode
,
376 struct ext4_extent_header
*eh
,
379 struct ext4_extent
*ext
;
380 struct ext4_extent_idx
*ext_idx
;
381 unsigned short entries
;
382 if (eh
->eh_entries
== 0)
385 entries
= le16_to_cpu(eh
->eh_entries
);
389 ext
= EXT_FIRST_EXTENT(eh
);
391 if (!ext4_valid_extent(inode
, ext
))
397 ext_idx
= EXT_FIRST_INDEX(eh
);
399 if (!ext4_valid_extent_idx(inode
, ext_idx
))
408 static int __ext4_ext_check(const char *function
, struct inode
*inode
,
409 struct ext4_extent_header
*eh
,
412 const char *error_msg
;
415 if (unlikely(eh
->eh_magic
!= EXT4_EXT_MAGIC
)) {
416 error_msg
= "invalid magic";
419 if (unlikely(le16_to_cpu(eh
->eh_depth
) != depth
)) {
420 error_msg
= "unexpected eh_depth";
423 if (unlikely(eh
->eh_max
== 0)) {
424 error_msg
= "invalid eh_max";
427 max
= ext4_ext_max_entries(inode
, depth
);
428 if (unlikely(le16_to_cpu(eh
->eh_max
) > max
)) {
429 error_msg
= "too large eh_max";
432 if (unlikely(le16_to_cpu(eh
->eh_entries
) > le16_to_cpu(eh
->eh_max
))) {
433 error_msg
= "invalid eh_entries";
436 if (!ext4_valid_extent_entries(inode
, eh
, depth
)) {
437 error_msg
= "invalid extent entries";
443 ext4_error(inode
->i_sb
, function
,
444 "bad header/extent in inode #%lu: %s - magic %x, "
445 "entries %u, max %u(%u), depth %u(%u)",
446 inode
->i_ino
, error_msg
, le16_to_cpu(eh
->eh_magic
),
447 le16_to_cpu(eh
->eh_entries
), le16_to_cpu(eh
->eh_max
),
448 max
, le16_to_cpu(eh
->eh_depth
), depth
);
453 #define ext4_ext_check(inode, eh, depth) \
454 __ext4_ext_check(__func__, inode, eh, depth)
456 int ext4_ext_check_inode(struct inode
*inode
)
458 return ext4_ext_check(inode
, ext_inode_hdr(inode
), ext_depth(inode
));
462 static void ext4_ext_show_path(struct inode
*inode
, struct ext4_ext_path
*path
)
464 int k
, l
= path
->p_depth
;
467 for (k
= 0; k
<= l
; k
++, path
++) {
469 ext_debug(" %d->%llu", le32_to_cpu(path
->p_idx
->ei_block
),
470 idx_pblock(path
->p_idx
));
471 } else if (path
->p_ext
) {
472 ext_debug(" %d:[%d]%d:%llu ",
473 le32_to_cpu(path
->p_ext
->ee_block
),
474 ext4_ext_is_uninitialized(path
->p_ext
),
475 ext4_ext_get_actual_len(path
->p_ext
),
476 ext_pblock(path
->p_ext
));
483 static void ext4_ext_show_leaf(struct inode
*inode
, struct ext4_ext_path
*path
)
485 int depth
= ext_depth(inode
);
486 struct ext4_extent_header
*eh
;
487 struct ext4_extent
*ex
;
493 eh
= path
[depth
].p_hdr
;
494 ex
= EXT_FIRST_EXTENT(eh
);
496 ext_debug("Displaying leaf extents for inode %lu\n", inode
->i_ino
);
498 for (i
= 0; i
< le16_to_cpu(eh
->eh_entries
); i
++, ex
++) {
499 ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex
->ee_block
),
500 ext4_ext_is_uninitialized(ex
),
501 ext4_ext_get_actual_len(ex
), ext_pblock(ex
));
506 #define ext4_ext_show_path(inode, path)
507 #define ext4_ext_show_leaf(inode, path)
510 void ext4_ext_drop_refs(struct ext4_ext_path
*path
)
512 int depth
= path
->p_depth
;
515 for (i
= 0; i
<= depth
; i
++, path
++)
523 * ext4_ext_binsearch_idx:
524 * binary search for the closest index of the given block
525 * the header must be checked before calling this
528 ext4_ext_binsearch_idx(struct inode
*inode
,
529 struct ext4_ext_path
*path
, ext4_lblk_t block
)
531 struct ext4_extent_header
*eh
= path
->p_hdr
;
532 struct ext4_extent_idx
*r
, *l
, *m
;
535 ext_debug("binsearch for %u(idx): ", block
);
537 l
= EXT_FIRST_INDEX(eh
) + 1;
538 r
= EXT_LAST_INDEX(eh
);
541 if (block
< le32_to_cpu(m
->ei_block
))
545 ext_debug("%p(%u):%p(%u):%p(%u) ", l
, le32_to_cpu(l
->ei_block
),
546 m
, le32_to_cpu(m
->ei_block
),
547 r
, le32_to_cpu(r
->ei_block
));
551 ext_debug(" -> %d->%lld ", le32_to_cpu(path
->p_idx
->ei_block
),
552 idx_pblock(path
->p_idx
));
554 #ifdef CHECK_BINSEARCH
556 struct ext4_extent_idx
*chix
, *ix
;
559 chix
= ix
= EXT_FIRST_INDEX(eh
);
560 for (k
= 0; k
< le16_to_cpu(eh
->eh_entries
); k
++, ix
++) {
562 le32_to_cpu(ix
->ei_block
) <= le32_to_cpu(ix
[-1].ei_block
)) {
563 printk(KERN_DEBUG
"k=%d, ix=0x%p, "
565 ix
, EXT_FIRST_INDEX(eh
));
566 printk(KERN_DEBUG
"%u <= %u\n",
567 le32_to_cpu(ix
->ei_block
),
568 le32_to_cpu(ix
[-1].ei_block
));
570 BUG_ON(k
&& le32_to_cpu(ix
->ei_block
)
571 <= le32_to_cpu(ix
[-1].ei_block
));
572 if (block
< le32_to_cpu(ix
->ei_block
))
576 BUG_ON(chix
!= path
->p_idx
);
583 * ext4_ext_binsearch:
584 * binary search for closest extent of the given block
585 * the header must be checked before calling this
588 ext4_ext_binsearch(struct inode
*inode
,
589 struct ext4_ext_path
*path
, ext4_lblk_t block
)
591 struct ext4_extent_header
*eh
= path
->p_hdr
;
592 struct ext4_extent
*r
, *l
, *m
;
594 if (eh
->eh_entries
== 0) {
596 * this leaf is empty:
597 * we get such a leaf in split/add case
602 ext_debug("binsearch for %u: ", block
);
604 l
= EXT_FIRST_EXTENT(eh
) + 1;
605 r
= EXT_LAST_EXTENT(eh
);
609 if (block
< le32_to_cpu(m
->ee_block
))
613 ext_debug("%p(%u):%p(%u):%p(%u) ", l
, le32_to_cpu(l
->ee_block
),
614 m
, le32_to_cpu(m
->ee_block
),
615 r
, le32_to_cpu(r
->ee_block
));
619 ext_debug(" -> %d:%llu:[%d]%d ",
620 le32_to_cpu(path
->p_ext
->ee_block
),
621 ext_pblock(path
->p_ext
),
622 ext4_ext_is_uninitialized(path
->p_ext
),
623 ext4_ext_get_actual_len(path
->p_ext
));
625 #ifdef CHECK_BINSEARCH
627 struct ext4_extent
*chex
, *ex
;
630 chex
= ex
= EXT_FIRST_EXTENT(eh
);
631 for (k
= 0; k
< le16_to_cpu(eh
->eh_entries
); k
++, ex
++) {
632 BUG_ON(k
&& le32_to_cpu(ex
->ee_block
)
633 <= le32_to_cpu(ex
[-1].ee_block
));
634 if (block
< le32_to_cpu(ex
->ee_block
))
638 BUG_ON(chex
!= path
->p_ext
);
644 int ext4_ext_tree_init(handle_t
*handle
, struct inode
*inode
)
646 struct ext4_extent_header
*eh
;
648 eh
= ext_inode_hdr(inode
);
651 eh
->eh_magic
= EXT4_EXT_MAGIC
;
652 eh
->eh_max
= cpu_to_le16(ext4_ext_space_root(inode
, 0));
653 ext4_mark_inode_dirty(handle
, inode
);
654 ext4_ext_invalidate_cache(inode
);
658 struct ext4_ext_path
*
659 ext4_ext_find_extent(struct inode
*inode
, ext4_lblk_t block
,
660 struct ext4_ext_path
*path
)
662 struct ext4_extent_header
*eh
;
663 struct buffer_head
*bh
;
664 short int depth
, i
, ppos
= 0, alloc
= 0;
666 eh
= ext_inode_hdr(inode
);
667 depth
= ext_depth(inode
);
669 /* account possible depth increase */
671 path
= kzalloc(sizeof(struct ext4_ext_path
) * (depth
+ 2),
674 return ERR_PTR(-ENOMEM
);
681 /* walk through the tree */
683 int need_to_validate
= 0;
685 ext_debug("depth %d: num %d, max %d\n",
686 ppos
, le16_to_cpu(eh
->eh_entries
), le16_to_cpu(eh
->eh_max
));
688 ext4_ext_binsearch_idx(inode
, path
+ ppos
, block
);
689 path
[ppos
].p_block
= idx_pblock(path
[ppos
].p_idx
);
690 path
[ppos
].p_depth
= i
;
691 path
[ppos
].p_ext
= NULL
;
693 bh
= sb_getblk(inode
->i_sb
, path
[ppos
].p_block
);
696 if (!bh_uptodate_or_lock(bh
)) {
697 if (bh_submit_read(bh
) < 0) {
701 /* validate the extent entries */
702 need_to_validate
= 1;
704 eh
= ext_block_hdr(bh
);
706 BUG_ON(ppos
> depth
);
707 path
[ppos
].p_bh
= bh
;
708 path
[ppos
].p_hdr
= eh
;
711 if (need_to_validate
&& ext4_ext_check(inode
, eh
, i
))
715 path
[ppos
].p_depth
= i
;
716 path
[ppos
].p_ext
= NULL
;
717 path
[ppos
].p_idx
= NULL
;
720 ext4_ext_binsearch(inode
, path
+ ppos
, block
);
721 /* if not an empty leaf */
722 if (path
[ppos
].p_ext
)
723 path
[ppos
].p_block
= ext_pblock(path
[ppos
].p_ext
);
725 ext4_ext_show_path(inode
, path
);
730 ext4_ext_drop_refs(path
);
733 return ERR_PTR(-EIO
);
737 * ext4_ext_insert_index:
738 * insert new index [@logical;@ptr] into the block at @curp;
739 * check where to insert: before @curp or after @curp
741 int ext4_ext_insert_index(handle_t
*handle
, struct inode
*inode
,
742 struct ext4_ext_path
*curp
,
743 int logical
, ext4_fsblk_t ptr
)
745 struct ext4_extent_idx
*ix
;
748 err
= ext4_ext_get_access(handle
, inode
, curp
);
752 BUG_ON(logical
== le32_to_cpu(curp
->p_idx
->ei_block
));
753 len
= EXT_MAX_INDEX(curp
->p_hdr
) - curp
->p_idx
;
754 if (logical
> le32_to_cpu(curp
->p_idx
->ei_block
)) {
756 if (curp
->p_idx
!= EXT_LAST_INDEX(curp
->p_hdr
)) {
757 len
= (len
- 1) * sizeof(struct ext4_extent_idx
);
758 len
= len
< 0 ? 0 : len
;
759 ext_debug("insert new index %d after: %llu. "
760 "move %d from 0x%p to 0x%p\n",
762 (curp
->p_idx
+ 1), (curp
->p_idx
+ 2));
763 memmove(curp
->p_idx
+ 2, curp
->p_idx
+ 1, len
);
765 ix
= curp
->p_idx
+ 1;
768 len
= len
* sizeof(struct ext4_extent_idx
);
769 len
= len
< 0 ? 0 : len
;
770 ext_debug("insert new index %d before: %llu. "
771 "move %d from 0x%p to 0x%p\n",
773 curp
->p_idx
, (curp
->p_idx
+ 1));
774 memmove(curp
->p_idx
+ 1, curp
->p_idx
, len
);
778 ix
->ei_block
= cpu_to_le32(logical
);
779 ext4_idx_store_pblock(ix
, ptr
);
780 le16_add_cpu(&curp
->p_hdr
->eh_entries
, 1);
782 BUG_ON(le16_to_cpu(curp
->p_hdr
->eh_entries
)
783 > le16_to_cpu(curp
->p_hdr
->eh_max
));
784 BUG_ON(ix
> EXT_LAST_INDEX(curp
->p_hdr
));
786 err
= ext4_ext_dirty(handle
, inode
, curp
);
787 ext4_std_error(inode
->i_sb
, err
);
794 * inserts new subtree into the path, using free index entry
796 * - allocates all needed blocks (new leaf and all intermediate index blocks)
797 * - makes decision where to split
798 * - moves remaining extents and index entries (right to the split point)
799 * into the newly allocated blocks
800 * - initializes subtree
802 static int ext4_ext_split(handle_t
*handle
, struct inode
*inode
,
803 struct ext4_ext_path
*path
,
804 struct ext4_extent
*newext
, int at
)
806 struct buffer_head
*bh
= NULL
;
807 int depth
= ext_depth(inode
);
808 struct ext4_extent_header
*neh
;
809 struct ext4_extent_idx
*fidx
;
810 struct ext4_extent
*ex
;
812 ext4_fsblk_t newblock
, oldblock
;
814 ext4_fsblk_t
*ablocks
= NULL
; /* array of allocated blocks */
817 /* make decision: where to split? */
818 /* FIXME: now decision is simplest: at current extent */
820 /* if current leaf will be split, then we should use
821 * border from split point */
822 BUG_ON(path
[depth
].p_ext
> EXT_MAX_EXTENT(path
[depth
].p_hdr
));
823 if (path
[depth
].p_ext
!= EXT_MAX_EXTENT(path
[depth
].p_hdr
)) {
824 border
= path
[depth
].p_ext
[1].ee_block
;
825 ext_debug("leaf will be split."
826 " next leaf starts at %d\n",
827 le32_to_cpu(border
));
829 border
= newext
->ee_block
;
830 ext_debug("leaf will be added."
831 " next leaf starts at %d\n",
832 le32_to_cpu(border
));
836 * If error occurs, then we break processing
837 * and mark filesystem read-only. index won't
838 * be inserted and tree will be in consistent
839 * state. Next mount will repair buffers too.
843 * Get array to track all allocated blocks.
844 * We need this to handle errors and free blocks
847 ablocks
= kzalloc(sizeof(ext4_fsblk_t
) * depth
, GFP_NOFS
);
851 /* allocate all needed blocks */
852 ext_debug("allocate %d blocks for indexes/leaf\n", depth
- at
);
853 for (a
= 0; a
< depth
- at
; a
++) {
854 newblock
= ext4_ext_new_meta_block(handle
, inode
, path
,
858 ablocks
[a
] = newblock
;
861 /* initialize new leaf */
862 newblock
= ablocks
[--a
];
863 BUG_ON(newblock
== 0);
864 bh
= sb_getblk(inode
->i_sb
, newblock
);
871 err
= ext4_journal_get_create_access(handle
, bh
);
875 neh
= ext_block_hdr(bh
);
877 neh
->eh_max
= cpu_to_le16(ext4_ext_space_block(inode
, 0));
878 neh
->eh_magic
= EXT4_EXT_MAGIC
;
880 ex
= EXT_FIRST_EXTENT(neh
);
882 /* move remainder of path[depth] to the new leaf */
883 BUG_ON(path
[depth
].p_hdr
->eh_entries
!= path
[depth
].p_hdr
->eh_max
);
884 /* start copy from next extent */
885 /* TODO: we could do it by single memmove */
888 while (path
[depth
].p_ext
<=
889 EXT_MAX_EXTENT(path
[depth
].p_hdr
)) {
890 ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
891 le32_to_cpu(path
[depth
].p_ext
->ee_block
),
892 ext_pblock(path
[depth
].p_ext
),
893 ext4_ext_is_uninitialized(path
[depth
].p_ext
),
894 ext4_ext_get_actual_len(path
[depth
].p_ext
),
896 /*memmove(ex++, path[depth].p_ext++,
897 sizeof(struct ext4_extent));
903 memmove(ex
, path
[depth
].p_ext
-m
, sizeof(struct ext4_extent
)*m
);
904 le16_add_cpu(&neh
->eh_entries
, m
);
907 set_buffer_uptodate(bh
);
910 err
= ext4_handle_dirty_metadata(handle
, inode
, bh
);
916 /* correct old leaf */
918 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
921 le16_add_cpu(&path
[depth
].p_hdr
->eh_entries
, -m
);
922 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
928 /* create intermediate indexes */
932 ext_debug("create %d intermediate indices\n", k
);
933 /* insert new index into current index block */
934 /* current depth stored in i var */
938 newblock
= ablocks
[--a
];
939 bh
= sb_getblk(inode
->i_sb
, newblock
);
946 err
= ext4_journal_get_create_access(handle
, bh
);
950 neh
= ext_block_hdr(bh
);
951 neh
->eh_entries
= cpu_to_le16(1);
952 neh
->eh_magic
= EXT4_EXT_MAGIC
;
953 neh
->eh_max
= cpu_to_le16(ext4_ext_space_block_idx(inode
, 0));
954 neh
->eh_depth
= cpu_to_le16(depth
- i
);
955 fidx
= EXT_FIRST_INDEX(neh
);
956 fidx
->ei_block
= border
;
957 ext4_idx_store_pblock(fidx
, oldblock
);
959 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
960 i
, newblock
, le32_to_cpu(border
), oldblock
);
965 ext_debug("cur 0x%p, last 0x%p\n", path
[i
].p_idx
,
966 EXT_MAX_INDEX(path
[i
].p_hdr
));
967 BUG_ON(EXT_MAX_INDEX(path
[i
].p_hdr
) !=
968 EXT_LAST_INDEX(path
[i
].p_hdr
));
969 while (path
[i
].p_idx
<= EXT_MAX_INDEX(path
[i
].p_hdr
)) {
970 ext_debug("%d: move %d:%llu in new index %llu\n", i
,
971 le32_to_cpu(path
[i
].p_idx
->ei_block
),
972 idx_pblock(path
[i
].p_idx
),
974 /*memmove(++fidx, path[i].p_idx++,
975 sizeof(struct ext4_extent_idx));
977 BUG_ON(neh->eh_entries > neh->eh_max);*/
982 memmove(++fidx
, path
[i
].p_idx
- m
,
983 sizeof(struct ext4_extent_idx
) * m
);
984 le16_add_cpu(&neh
->eh_entries
, m
);
986 set_buffer_uptodate(bh
);
989 err
= ext4_handle_dirty_metadata(handle
, inode
, bh
);
995 /* correct old index */
997 err
= ext4_ext_get_access(handle
, inode
, path
+ i
);
1000 le16_add_cpu(&path
[i
].p_hdr
->eh_entries
, -m
);
1001 err
= ext4_ext_dirty(handle
, inode
, path
+ i
);
1009 /* insert new index */
1010 err
= ext4_ext_insert_index(handle
, inode
, path
+ at
,
1011 le32_to_cpu(border
), newblock
);
1015 if (buffer_locked(bh
))
1021 /* free all allocated blocks in error case */
1022 for (i
= 0; i
< depth
; i
++) {
1025 ext4_free_blocks(handle
, inode
, 0, ablocks
[i
], 1,
1026 EXT4_FREE_BLOCKS_METADATA
);
1035 * ext4_ext_grow_indepth:
1036 * implements tree growing procedure:
1037 * - allocates new block
1038 * - moves top-level data (index block or leaf) into the new block
1039 * - initializes new top-level, creating index that points to the
1040 * just created block
1042 static int ext4_ext_grow_indepth(handle_t
*handle
, struct inode
*inode
,
1043 struct ext4_ext_path
*path
,
1044 struct ext4_extent
*newext
)
1046 struct ext4_ext_path
*curp
= path
;
1047 struct ext4_extent_header
*neh
;
1048 struct ext4_extent_idx
*fidx
;
1049 struct buffer_head
*bh
;
1050 ext4_fsblk_t newblock
;
1053 newblock
= ext4_ext_new_meta_block(handle
, inode
, path
, newext
, &err
);
1057 bh
= sb_getblk(inode
->i_sb
, newblock
);
1060 ext4_std_error(inode
->i_sb
, err
);
1065 err
= ext4_journal_get_create_access(handle
, bh
);
1071 /* move top-level index/leaf into new block */
1072 memmove(bh
->b_data
, curp
->p_hdr
, sizeof(EXT4_I(inode
)->i_data
));
1074 /* set size of new block */
1075 neh
= ext_block_hdr(bh
);
1076 /* old root could have indexes or leaves
1077 * so calculate e_max right way */
1078 if (ext_depth(inode
))
1079 neh
->eh_max
= cpu_to_le16(ext4_ext_space_block_idx(inode
, 0));
1081 neh
->eh_max
= cpu_to_le16(ext4_ext_space_block(inode
, 0));
1082 neh
->eh_magic
= EXT4_EXT_MAGIC
;
1083 set_buffer_uptodate(bh
);
1086 err
= ext4_handle_dirty_metadata(handle
, inode
, bh
);
1090 /* create index in new top-level index: num,max,pointer */
1091 err
= ext4_ext_get_access(handle
, inode
, curp
);
1095 curp
->p_hdr
->eh_magic
= EXT4_EXT_MAGIC
;
1096 curp
->p_hdr
->eh_max
= cpu_to_le16(ext4_ext_space_root_idx(inode
, 0));
1097 curp
->p_hdr
->eh_entries
= cpu_to_le16(1);
1098 curp
->p_idx
= EXT_FIRST_INDEX(curp
->p_hdr
);
1100 if (path
[0].p_hdr
->eh_depth
)
1101 curp
->p_idx
->ei_block
=
1102 EXT_FIRST_INDEX(path
[0].p_hdr
)->ei_block
;
1104 curp
->p_idx
->ei_block
=
1105 EXT_FIRST_EXTENT(path
[0].p_hdr
)->ee_block
;
1106 ext4_idx_store_pblock(curp
->p_idx
, newblock
);
1108 neh
= ext_inode_hdr(inode
);
1109 fidx
= EXT_FIRST_INDEX(neh
);
1110 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
1111 le16_to_cpu(neh
->eh_entries
), le16_to_cpu(neh
->eh_max
),
1112 le32_to_cpu(fidx
->ei_block
), idx_pblock(fidx
));
1114 neh
->eh_depth
= cpu_to_le16(path
->p_depth
+ 1);
1115 err
= ext4_ext_dirty(handle
, inode
, curp
);
1123 * ext4_ext_create_new_leaf:
1124 * finds empty index and adds new leaf.
1125 * if no free index is found, then it requests in-depth growing.
1127 static int ext4_ext_create_new_leaf(handle_t
*handle
, struct inode
*inode
,
1128 struct ext4_ext_path
*path
,
1129 struct ext4_extent
*newext
)
1131 struct ext4_ext_path
*curp
;
1132 int depth
, i
, err
= 0;
1135 i
= depth
= ext_depth(inode
);
1137 /* walk up to the tree and look for free index entry */
1138 curp
= path
+ depth
;
1139 while (i
> 0 && !EXT_HAS_FREE_INDEX(curp
)) {
1144 /* we use already allocated block for index block,
1145 * so subsequent data blocks should be contiguous */
1146 if (EXT_HAS_FREE_INDEX(curp
)) {
1147 /* if we found index with free entry, then use that
1148 * entry: create all needed subtree and add new leaf */
1149 err
= ext4_ext_split(handle
, inode
, path
, newext
, i
);
1154 ext4_ext_drop_refs(path
);
1155 path
= ext4_ext_find_extent(inode
,
1156 (ext4_lblk_t
)le32_to_cpu(newext
->ee_block
),
1159 err
= PTR_ERR(path
);
1161 /* tree is full, time to grow in depth */
1162 err
= ext4_ext_grow_indepth(handle
, inode
, path
, newext
);
1167 ext4_ext_drop_refs(path
);
1168 path
= ext4_ext_find_extent(inode
,
1169 (ext4_lblk_t
)le32_to_cpu(newext
->ee_block
),
1172 err
= PTR_ERR(path
);
1177 * only first (depth 0 -> 1) produces free space;
1178 * in all other cases we have to split the grown tree
1180 depth
= ext_depth(inode
);
1181 if (path
[depth
].p_hdr
->eh_entries
== path
[depth
].p_hdr
->eh_max
) {
1182 /* now we need to split */
1192 * search the closest allocated block to the left for *logical
1193 * and returns it at @logical + it's physical address at @phys
1194 * if *logical is the smallest allocated block, the function
1195 * returns 0 at @phys
1196 * return value contains 0 (success) or error code
1199 ext4_ext_search_left(struct inode
*inode
, struct ext4_ext_path
*path
,
1200 ext4_lblk_t
*logical
, ext4_fsblk_t
*phys
)
1202 struct ext4_extent_idx
*ix
;
1203 struct ext4_extent
*ex
;
1206 BUG_ON(path
== NULL
);
1207 depth
= path
->p_depth
;
1210 if (depth
== 0 && path
->p_ext
== NULL
)
1213 /* usually extent in the path covers blocks smaller
1214 * then *logical, but it can be that extent is the
1215 * first one in the file */
1217 ex
= path
[depth
].p_ext
;
1218 ee_len
= ext4_ext_get_actual_len(ex
);
1219 if (*logical
< le32_to_cpu(ex
->ee_block
)) {
1220 BUG_ON(EXT_FIRST_EXTENT(path
[depth
].p_hdr
) != ex
);
1221 while (--depth
>= 0) {
1222 ix
= path
[depth
].p_idx
;
1223 BUG_ON(ix
!= EXT_FIRST_INDEX(path
[depth
].p_hdr
));
1228 BUG_ON(*logical
< (le32_to_cpu(ex
->ee_block
) + ee_len
));
1230 *logical
= le32_to_cpu(ex
->ee_block
) + ee_len
- 1;
1231 *phys
= ext_pblock(ex
) + ee_len
- 1;
1236 * search the closest allocated block to the right for *logical
1237 * and returns it at @logical + it's physical address at @phys
1238 * if *logical is the smallest allocated block, the function
1239 * returns 0 at @phys
1240 * return value contains 0 (success) or error code
1243 ext4_ext_search_right(struct inode
*inode
, struct ext4_ext_path
*path
,
1244 ext4_lblk_t
*logical
, ext4_fsblk_t
*phys
)
1246 struct buffer_head
*bh
= NULL
;
1247 struct ext4_extent_header
*eh
;
1248 struct ext4_extent_idx
*ix
;
1249 struct ext4_extent
*ex
;
1251 int depth
; /* Note, NOT eh_depth; depth from top of tree */
1254 BUG_ON(path
== NULL
);
1255 depth
= path
->p_depth
;
1258 if (depth
== 0 && path
->p_ext
== NULL
)
1261 /* usually extent in the path covers blocks smaller
1262 * then *logical, but it can be that extent is the
1263 * first one in the file */
1265 ex
= path
[depth
].p_ext
;
1266 ee_len
= ext4_ext_get_actual_len(ex
);
1267 if (*logical
< le32_to_cpu(ex
->ee_block
)) {
1268 BUG_ON(EXT_FIRST_EXTENT(path
[depth
].p_hdr
) != ex
);
1269 while (--depth
>= 0) {
1270 ix
= path
[depth
].p_idx
;
1271 BUG_ON(ix
!= EXT_FIRST_INDEX(path
[depth
].p_hdr
));
1273 *logical
= le32_to_cpu(ex
->ee_block
);
1274 *phys
= ext_pblock(ex
);
1278 BUG_ON(*logical
< (le32_to_cpu(ex
->ee_block
) + ee_len
));
1280 if (ex
!= EXT_LAST_EXTENT(path
[depth
].p_hdr
)) {
1281 /* next allocated block in this leaf */
1283 *logical
= le32_to_cpu(ex
->ee_block
);
1284 *phys
= ext_pblock(ex
);
1288 /* go up and search for index to the right */
1289 while (--depth
>= 0) {
1290 ix
= path
[depth
].p_idx
;
1291 if (ix
!= EXT_LAST_INDEX(path
[depth
].p_hdr
))
1295 /* we've gone up to the root and found no index to the right */
1299 /* we've found index to the right, let's
1300 * follow it and find the closest allocated
1301 * block to the right */
1303 block
= idx_pblock(ix
);
1304 while (++depth
< path
->p_depth
) {
1305 bh
= sb_bread(inode
->i_sb
, block
);
1308 eh
= ext_block_hdr(bh
);
1309 /* subtract from p_depth to get proper eh_depth */
1310 if (ext4_ext_check(inode
, eh
, path
->p_depth
- depth
)) {
1314 ix
= EXT_FIRST_INDEX(eh
);
1315 block
= idx_pblock(ix
);
1319 bh
= sb_bread(inode
->i_sb
, block
);
1322 eh
= ext_block_hdr(bh
);
1323 if (ext4_ext_check(inode
, eh
, path
->p_depth
- depth
)) {
1327 ex
= EXT_FIRST_EXTENT(eh
);
1328 *logical
= le32_to_cpu(ex
->ee_block
);
1329 *phys
= ext_pblock(ex
);
1335 * ext4_ext_next_allocated_block:
1336 * returns allocated block in subsequent extent or EXT_MAX_BLOCK.
1337 * NOTE: it considers block number from index entry as
1338 * allocated block. Thus, index entries have to be consistent
1342 ext4_ext_next_allocated_block(struct ext4_ext_path
*path
)
1346 BUG_ON(path
== NULL
);
1347 depth
= path
->p_depth
;
1349 if (depth
== 0 && path
->p_ext
== NULL
)
1350 return EXT_MAX_BLOCK
;
1352 while (depth
>= 0) {
1353 if (depth
== path
->p_depth
) {
1355 if (path
[depth
].p_ext
!=
1356 EXT_LAST_EXTENT(path
[depth
].p_hdr
))
1357 return le32_to_cpu(path
[depth
].p_ext
[1].ee_block
);
1360 if (path
[depth
].p_idx
!=
1361 EXT_LAST_INDEX(path
[depth
].p_hdr
))
1362 return le32_to_cpu(path
[depth
].p_idx
[1].ei_block
);
1367 return EXT_MAX_BLOCK
;
1371 * ext4_ext_next_leaf_block:
1372 * returns first allocated block from next leaf or EXT_MAX_BLOCK
1374 static ext4_lblk_t
ext4_ext_next_leaf_block(struct inode
*inode
,
1375 struct ext4_ext_path
*path
)
1379 BUG_ON(path
== NULL
);
1380 depth
= path
->p_depth
;
1382 /* zero-tree has no leaf blocks at all */
1384 return EXT_MAX_BLOCK
;
1386 /* go to index block */
1389 while (depth
>= 0) {
1390 if (path
[depth
].p_idx
!=
1391 EXT_LAST_INDEX(path
[depth
].p_hdr
))
1392 return (ext4_lblk_t
)
1393 le32_to_cpu(path
[depth
].p_idx
[1].ei_block
);
1397 return EXT_MAX_BLOCK
;
1401 * ext4_ext_correct_indexes:
1402 * if leaf gets modified and modified extent is first in the leaf,
1403 * then we have to correct all indexes above.
1404 * TODO: do we need to correct tree in all cases?
1406 static int ext4_ext_correct_indexes(handle_t
*handle
, struct inode
*inode
,
1407 struct ext4_ext_path
*path
)
1409 struct ext4_extent_header
*eh
;
1410 int depth
= ext_depth(inode
);
1411 struct ext4_extent
*ex
;
1415 eh
= path
[depth
].p_hdr
;
1416 ex
= path
[depth
].p_ext
;
1421 /* there is no tree at all */
1425 if (ex
!= EXT_FIRST_EXTENT(eh
)) {
1426 /* we correct tree if first leaf got modified only */
1431 * TODO: we need correction if border is smaller than current one
1434 border
= path
[depth
].p_ext
->ee_block
;
1435 err
= ext4_ext_get_access(handle
, inode
, path
+ k
);
1438 path
[k
].p_idx
->ei_block
= border
;
1439 err
= ext4_ext_dirty(handle
, inode
, path
+ k
);
1444 /* change all left-side indexes */
1445 if (path
[k
+1].p_idx
!= EXT_FIRST_INDEX(path
[k
+1].p_hdr
))
1447 err
= ext4_ext_get_access(handle
, inode
, path
+ k
);
1450 path
[k
].p_idx
->ei_block
= border
;
1451 err
= ext4_ext_dirty(handle
, inode
, path
+ k
);
1460 ext4_can_extents_be_merged(struct inode
*inode
, struct ext4_extent
*ex1
,
1461 struct ext4_extent
*ex2
)
1463 unsigned short ext1_ee_len
, ext2_ee_len
, max_len
;
1466 * Make sure that either both extents are uninitialized, or
1469 if (ext4_ext_is_uninitialized(ex1
) ^ ext4_ext_is_uninitialized(ex2
))
1472 if (ext4_ext_is_uninitialized(ex1
))
1473 max_len
= EXT_UNINIT_MAX_LEN
;
1475 max_len
= EXT_INIT_MAX_LEN
;
1477 ext1_ee_len
= ext4_ext_get_actual_len(ex1
);
1478 ext2_ee_len
= ext4_ext_get_actual_len(ex2
);
1480 if (le32_to_cpu(ex1
->ee_block
) + ext1_ee_len
!=
1481 le32_to_cpu(ex2
->ee_block
))
1485 * To allow future support for preallocated extents to be added
1486 * as an RO_COMPAT feature, refuse to merge to extents if
1487 * this can result in the top bit of ee_len being set.
1489 if (ext1_ee_len
+ ext2_ee_len
> max_len
)
1491 #ifdef AGGRESSIVE_TEST
1492 if (ext1_ee_len
>= 4)
1496 if (ext_pblock(ex1
) + ext1_ee_len
== ext_pblock(ex2
))
1502 * This function tries to merge the "ex" extent to the next extent in the tree.
1503 * It always tries to merge towards right. If you want to merge towards
1504 * left, pass "ex - 1" as argument instead of "ex".
1505 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1506 * 1 if they got merged.
1508 int ext4_ext_try_to_merge(struct inode
*inode
,
1509 struct ext4_ext_path
*path
,
1510 struct ext4_extent
*ex
)
1512 struct ext4_extent_header
*eh
;
1513 unsigned int depth
, len
;
1515 int uninitialized
= 0;
1517 depth
= ext_depth(inode
);
1518 BUG_ON(path
[depth
].p_hdr
== NULL
);
1519 eh
= path
[depth
].p_hdr
;
1521 while (ex
< EXT_LAST_EXTENT(eh
)) {
1522 if (!ext4_can_extents_be_merged(inode
, ex
, ex
+ 1))
1524 /* merge with next extent! */
1525 if (ext4_ext_is_uninitialized(ex
))
1527 ex
->ee_len
= cpu_to_le16(ext4_ext_get_actual_len(ex
)
1528 + ext4_ext_get_actual_len(ex
+ 1));
1530 ext4_ext_mark_uninitialized(ex
);
1532 if (ex
+ 1 < EXT_LAST_EXTENT(eh
)) {
1533 len
= (EXT_LAST_EXTENT(eh
) - ex
- 1)
1534 * sizeof(struct ext4_extent
);
1535 memmove(ex
+ 1, ex
+ 2, len
);
1537 le16_add_cpu(&eh
->eh_entries
, -1);
1539 WARN_ON(eh
->eh_entries
== 0);
1540 if (!eh
->eh_entries
)
1541 ext4_error(inode
->i_sb
, "ext4_ext_try_to_merge",
1542 "inode#%lu, eh->eh_entries = 0!", inode
->i_ino
);
1549 * check if a portion of the "newext" extent overlaps with an
1552 * If there is an overlap discovered, it updates the length of the newext
1553 * such that there will be no overlap, and then returns 1.
1554 * If there is no overlap found, it returns 0.
1556 unsigned int ext4_ext_check_overlap(struct inode
*inode
,
1557 struct ext4_extent
*newext
,
1558 struct ext4_ext_path
*path
)
1561 unsigned int depth
, len1
;
1562 unsigned int ret
= 0;
1564 b1
= le32_to_cpu(newext
->ee_block
);
1565 len1
= ext4_ext_get_actual_len(newext
);
1566 depth
= ext_depth(inode
);
1567 if (!path
[depth
].p_ext
)
1569 b2
= le32_to_cpu(path
[depth
].p_ext
->ee_block
);
1572 * get the next allocated block if the extent in the path
1573 * is before the requested block(s)
1576 b2
= ext4_ext_next_allocated_block(path
);
1577 if (b2
== EXT_MAX_BLOCK
)
1581 /* check for wrap through zero on extent logical start block*/
1582 if (b1
+ len1
< b1
) {
1583 len1
= EXT_MAX_BLOCK
- b1
;
1584 newext
->ee_len
= cpu_to_le16(len1
);
1588 /* check for overlap */
1589 if (b1
+ len1
> b2
) {
1590 newext
->ee_len
= cpu_to_le16(b2
- b1
);
1598 * ext4_ext_insert_extent:
1599 * tries to merge requsted extent into the existing extent or
1600 * inserts requested extent as new one into the tree,
1601 * creating new leaf in the no-space case.
1603 int ext4_ext_insert_extent(handle_t
*handle
, struct inode
*inode
,
1604 struct ext4_ext_path
*path
,
1605 struct ext4_extent
*newext
, int flag
)
1607 struct ext4_extent_header
*eh
;
1608 struct ext4_extent
*ex
, *fex
;
1609 struct ext4_extent
*nearex
; /* nearest extent */
1610 struct ext4_ext_path
*npath
= NULL
;
1611 int depth
, len
, err
;
1613 unsigned uninitialized
= 0;
1615 BUG_ON(ext4_ext_get_actual_len(newext
) == 0);
1616 depth
= ext_depth(inode
);
1617 ex
= path
[depth
].p_ext
;
1618 BUG_ON(path
[depth
].p_hdr
== NULL
);
1620 /* try to insert block into found extent and return */
1621 if (ex
&& (flag
!= EXT4_GET_BLOCKS_DIO_CREATE_EXT
)
1622 && ext4_can_extents_be_merged(inode
, ex
, newext
)) {
1623 ext_debug("append [%d]%d block to %d:[%d]%d (from %llu)\n",
1624 ext4_ext_is_uninitialized(newext
),
1625 ext4_ext_get_actual_len(newext
),
1626 le32_to_cpu(ex
->ee_block
),
1627 ext4_ext_is_uninitialized(ex
),
1628 ext4_ext_get_actual_len(ex
), ext_pblock(ex
));
1629 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
1634 * ext4_can_extents_be_merged should have checked that either
1635 * both extents are uninitialized, or both aren't. Thus we
1636 * need to check only one of them here.
1638 if (ext4_ext_is_uninitialized(ex
))
1640 ex
->ee_len
= cpu_to_le16(ext4_ext_get_actual_len(ex
)
1641 + ext4_ext_get_actual_len(newext
));
1643 ext4_ext_mark_uninitialized(ex
);
1644 eh
= path
[depth
].p_hdr
;
1650 depth
= ext_depth(inode
);
1651 eh
= path
[depth
].p_hdr
;
1652 if (le16_to_cpu(eh
->eh_entries
) < le16_to_cpu(eh
->eh_max
))
1655 /* probably next leaf has space for us? */
1656 fex
= EXT_LAST_EXTENT(eh
);
1657 next
= ext4_ext_next_leaf_block(inode
, path
);
1658 if (le32_to_cpu(newext
->ee_block
) > le32_to_cpu(fex
->ee_block
)
1659 && next
!= EXT_MAX_BLOCK
) {
1660 ext_debug("next leaf block - %d\n", next
);
1661 BUG_ON(npath
!= NULL
);
1662 npath
= ext4_ext_find_extent(inode
, next
, NULL
);
1664 return PTR_ERR(npath
);
1665 BUG_ON(npath
->p_depth
!= path
->p_depth
);
1666 eh
= npath
[depth
].p_hdr
;
1667 if (le16_to_cpu(eh
->eh_entries
) < le16_to_cpu(eh
->eh_max
)) {
1668 ext_debug("next leaf isnt full(%d)\n",
1669 le16_to_cpu(eh
->eh_entries
));
1673 ext_debug("next leaf has no free space(%d,%d)\n",
1674 le16_to_cpu(eh
->eh_entries
), le16_to_cpu(eh
->eh_max
));
1678 * There is no free space in the found leaf.
1679 * We're gonna add a new leaf in the tree.
1681 err
= ext4_ext_create_new_leaf(handle
, inode
, path
, newext
);
1684 depth
= ext_depth(inode
);
1685 eh
= path
[depth
].p_hdr
;
1688 nearex
= path
[depth
].p_ext
;
1690 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
1695 /* there is no extent in this leaf, create first one */
1696 ext_debug("first extent in the leaf: %d:%llu:[%d]%d\n",
1697 le32_to_cpu(newext
->ee_block
),
1699 ext4_ext_is_uninitialized(newext
),
1700 ext4_ext_get_actual_len(newext
));
1701 path
[depth
].p_ext
= EXT_FIRST_EXTENT(eh
);
1702 } else if (le32_to_cpu(newext
->ee_block
)
1703 > le32_to_cpu(nearex
->ee_block
)) {
1704 /* BUG_ON(newext->ee_block == nearex->ee_block); */
1705 if (nearex
!= EXT_LAST_EXTENT(eh
)) {
1706 len
= EXT_MAX_EXTENT(eh
) - nearex
;
1707 len
= (len
- 1) * sizeof(struct ext4_extent
);
1708 len
= len
< 0 ? 0 : len
;
1709 ext_debug("insert %d:%llu:[%d]%d after: nearest 0x%p, "
1710 "move %d from 0x%p to 0x%p\n",
1711 le32_to_cpu(newext
->ee_block
),
1713 ext4_ext_is_uninitialized(newext
),
1714 ext4_ext_get_actual_len(newext
),
1715 nearex
, len
, nearex
+ 1, nearex
+ 2);
1716 memmove(nearex
+ 2, nearex
+ 1, len
);
1718 path
[depth
].p_ext
= nearex
+ 1;
1720 BUG_ON(newext
->ee_block
== nearex
->ee_block
);
1721 len
= (EXT_MAX_EXTENT(eh
) - nearex
) * sizeof(struct ext4_extent
);
1722 len
= len
< 0 ? 0 : len
;
1723 ext_debug("insert %d:%llu:[%d]%d before: nearest 0x%p, "
1724 "move %d from 0x%p to 0x%p\n",
1725 le32_to_cpu(newext
->ee_block
),
1727 ext4_ext_is_uninitialized(newext
),
1728 ext4_ext_get_actual_len(newext
),
1729 nearex
, len
, nearex
+ 1, nearex
+ 2);
1730 memmove(nearex
+ 1, nearex
, len
);
1731 path
[depth
].p_ext
= nearex
;
1734 le16_add_cpu(&eh
->eh_entries
, 1);
1735 nearex
= path
[depth
].p_ext
;
1736 nearex
->ee_block
= newext
->ee_block
;
1737 ext4_ext_store_pblock(nearex
, ext_pblock(newext
));
1738 nearex
->ee_len
= newext
->ee_len
;
1741 /* try to merge extents to the right */
1742 if (flag
!= EXT4_GET_BLOCKS_DIO_CREATE_EXT
)
1743 ext4_ext_try_to_merge(inode
, path
, nearex
);
1745 /* try to merge extents to the left */
1747 /* time to correct all indexes above */
1748 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
1752 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
1756 ext4_ext_drop_refs(npath
);
1759 ext4_ext_invalidate_cache(inode
);
1763 int ext4_ext_walk_space(struct inode
*inode
, ext4_lblk_t block
,
1764 ext4_lblk_t num
, ext_prepare_callback func
,
1767 struct ext4_ext_path
*path
= NULL
;
1768 struct ext4_ext_cache cbex
;
1769 struct ext4_extent
*ex
;
1770 ext4_lblk_t next
, start
= 0, end
= 0;
1771 ext4_lblk_t last
= block
+ num
;
1772 int depth
, exists
, err
= 0;
1774 BUG_ON(func
== NULL
);
1775 BUG_ON(inode
== NULL
);
1777 while (block
< last
&& block
!= EXT_MAX_BLOCK
) {
1779 /* find extent for this block */
1780 down_read(&EXT4_I(inode
)->i_data_sem
);
1781 path
= ext4_ext_find_extent(inode
, block
, path
);
1782 up_read(&EXT4_I(inode
)->i_data_sem
);
1784 err
= PTR_ERR(path
);
1789 depth
= ext_depth(inode
);
1790 BUG_ON(path
[depth
].p_hdr
== NULL
);
1791 ex
= path
[depth
].p_ext
;
1792 next
= ext4_ext_next_allocated_block(path
);
1796 /* there is no extent yet, so try to allocate
1797 * all requested space */
1800 } else if (le32_to_cpu(ex
->ee_block
) > block
) {
1801 /* need to allocate space before found extent */
1803 end
= le32_to_cpu(ex
->ee_block
);
1804 if (block
+ num
< end
)
1806 } else if (block
>= le32_to_cpu(ex
->ee_block
)
1807 + ext4_ext_get_actual_len(ex
)) {
1808 /* need to allocate space after found extent */
1813 } else if (block
>= le32_to_cpu(ex
->ee_block
)) {
1815 * some part of requested space is covered
1819 end
= le32_to_cpu(ex
->ee_block
)
1820 + ext4_ext_get_actual_len(ex
);
1821 if (block
+ num
< end
)
1827 BUG_ON(end
<= start
);
1830 cbex
.ec_block
= start
;
1831 cbex
.ec_len
= end
- start
;
1833 cbex
.ec_type
= EXT4_EXT_CACHE_GAP
;
1835 cbex
.ec_block
= le32_to_cpu(ex
->ee_block
);
1836 cbex
.ec_len
= ext4_ext_get_actual_len(ex
);
1837 cbex
.ec_start
= ext_pblock(ex
);
1838 cbex
.ec_type
= EXT4_EXT_CACHE_EXTENT
;
1841 BUG_ON(cbex
.ec_len
== 0);
1842 err
= func(inode
, path
, &cbex
, ex
, cbdata
);
1843 ext4_ext_drop_refs(path
);
1848 if (err
== EXT_REPEAT
)
1850 else if (err
== EXT_BREAK
) {
1855 if (ext_depth(inode
) != depth
) {
1856 /* depth was changed. we have to realloc path */
1861 block
= cbex
.ec_block
+ cbex
.ec_len
;
1865 ext4_ext_drop_refs(path
);
1873 ext4_ext_put_in_cache(struct inode
*inode
, ext4_lblk_t block
,
1874 __u32 len
, ext4_fsblk_t start
, int type
)
1876 struct ext4_ext_cache
*cex
;
1878 spin_lock(&EXT4_I(inode
)->i_block_reservation_lock
);
1879 cex
= &EXT4_I(inode
)->i_cached_extent
;
1880 cex
->ec_type
= type
;
1881 cex
->ec_block
= block
;
1883 cex
->ec_start
= start
;
1884 spin_unlock(&EXT4_I(inode
)->i_block_reservation_lock
);
1888 * ext4_ext_put_gap_in_cache:
1889 * calculate boundaries of the gap that the requested block fits into
1890 * and cache this gap
1893 ext4_ext_put_gap_in_cache(struct inode
*inode
, struct ext4_ext_path
*path
,
1896 int depth
= ext_depth(inode
);
1899 struct ext4_extent
*ex
;
1901 ex
= path
[depth
].p_ext
;
1903 /* there is no extent yet, so gap is [0;-] */
1905 len
= EXT_MAX_BLOCK
;
1906 ext_debug("cache gap(whole file):");
1907 } else if (block
< le32_to_cpu(ex
->ee_block
)) {
1909 len
= le32_to_cpu(ex
->ee_block
) - block
;
1910 ext_debug("cache gap(before): %u [%u:%u]",
1912 le32_to_cpu(ex
->ee_block
),
1913 ext4_ext_get_actual_len(ex
));
1914 } else if (block
>= le32_to_cpu(ex
->ee_block
)
1915 + ext4_ext_get_actual_len(ex
)) {
1917 lblock
= le32_to_cpu(ex
->ee_block
)
1918 + ext4_ext_get_actual_len(ex
);
1920 next
= ext4_ext_next_allocated_block(path
);
1921 ext_debug("cache gap(after): [%u:%u] %u",
1922 le32_to_cpu(ex
->ee_block
),
1923 ext4_ext_get_actual_len(ex
),
1925 BUG_ON(next
== lblock
);
1926 len
= next
- lblock
;
1932 ext_debug(" -> %u:%lu\n", lblock
, len
);
1933 ext4_ext_put_in_cache(inode
, lblock
, len
, 0, EXT4_EXT_CACHE_GAP
);
1937 ext4_ext_in_cache(struct inode
*inode
, ext4_lblk_t block
,
1938 struct ext4_extent
*ex
)
1940 struct ext4_ext_cache
*cex
;
1941 int ret
= EXT4_EXT_CACHE_NO
;
1944 * We borrow i_block_reservation_lock to protect i_cached_extent
1946 spin_lock(&EXT4_I(inode
)->i_block_reservation_lock
);
1947 cex
= &EXT4_I(inode
)->i_cached_extent
;
1949 /* has cache valid data? */
1950 if (cex
->ec_type
== EXT4_EXT_CACHE_NO
)
1953 BUG_ON(cex
->ec_type
!= EXT4_EXT_CACHE_GAP
&&
1954 cex
->ec_type
!= EXT4_EXT_CACHE_EXTENT
);
1955 if (block
>= cex
->ec_block
&& block
< cex
->ec_block
+ cex
->ec_len
) {
1956 ex
->ee_block
= cpu_to_le32(cex
->ec_block
);
1957 ext4_ext_store_pblock(ex
, cex
->ec_start
);
1958 ex
->ee_len
= cpu_to_le16(cex
->ec_len
);
1959 ext_debug("%u cached by %u:%u:%llu\n",
1961 cex
->ec_block
, cex
->ec_len
, cex
->ec_start
);
1965 spin_unlock(&EXT4_I(inode
)->i_block_reservation_lock
);
1971 * removes index from the index block.
1972 * It's used in truncate case only, thus all requests are for
1973 * last index in the block only.
1975 static int ext4_ext_rm_idx(handle_t
*handle
, struct inode
*inode
,
1976 struct ext4_ext_path
*path
)
1981 /* free index block */
1983 leaf
= idx_pblock(path
->p_idx
);
1984 BUG_ON(path
->p_hdr
->eh_entries
== 0);
1985 err
= ext4_ext_get_access(handle
, inode
, path
);
1988 le16_add_cpu(&path
->p_hdr
->eh_entries
, -1);
1989 err
= ext4_ext_dirty(handle
, inode
, path
);
1992 ext_debug("index is empty, remove it, free block %llu\n", leaf
);
1993 ext4_free_blocks(handle
, inode
, 0, leaf
, 1,
1994 EXT4_FREE_BLOCKS_METADATA
| EXT4_FREE_BLOCKS_FORGET
);
1999 * ext4_ext_calc_credits_for_single_extent:
2000 * This routine returns max. credits that needed to insert an extent
2001 * to the extent tree.
2002 * When pass the actual path, the caller should calculate credits
2005 int ext4_ext_calc_credits_for_single_extent(struct inode
*inode
, int nrblocks
,
2006 struct ext4_ext_path
*path
)
2009 int depth
= ext_depth(inode
);
2012 /* probably there is space in leaf? */
2013 if (le16_to_cpu(path
[depth
].p_hdr
->eh_entries
)
2014 < le16_to_cpu(path
[depth
].p_hdr
->eh_max
)) {
2017 * There are some space in the leaf tree, no
2018 * need to account for leaf block credit
2020 * bitmaps and block group descriptor blocks
2021 * and other metadat blocks still need to be
2024 /* 1 bitmap, 1 block group descriptor */
2025 ret
= 2 + EXT4_META_TRANS_BLOCKS(inode
->i_sb
);
2030 return ext4_chunk_trans_blocks(inode
, nrblocks
);
2034 * How many index/leaf blocks need to change/allocate to modify nrblocks?
2036 * if nrblocks are fit in a single extent (chunk flag is 1), then
2037 * in the worse case, each tree level index/leaf need to be changed
2038 * if the tree split due to insert a new extent, then the old tree
2039 * index/leaf need to be updated too
2041 * If the nrblocks are discontiguous, they could cause
2042 * the whole tree split more than once, but this is really rare.
2044 int ext4_ext_index_trans_blocks(struct inode
*inode
, int nrblocks
, int chunk
)
2047 int depth
= ext_depth(inode
);
2057 static int ext4_remove_blocks(handle_t
*handle
, struct inode
*inode
,
2058 struct ext4_extent
*ex
,
2059 ext4_lblk_t from
, ext4_lblk_t to
)
2061 unsigned short ee_len
= ext4_ext_get_actual_len(ex
);
2062 int flags
= EXT4_FREE_BLOCKS_FORGET
;
2064 if (S_ISDIR(inode
->i_mode
) || S_ISLNK(inode
->i_mode
))
2065 flags
|= EXT4_FREE_BLOCKS_METADATA
;
2066 #ifdef EXTENTS_STATS
2068 struct ext4_sb_info
*sbi
= EXT4_SB(inode
->i_sb
);
2069 spin_lock(&sbi
->s_ext_stats_lock
);
2070 sbi
->s_ext_blocks
+= ee_len
;
2071 sbi
->s_ext_extents
++;
2072 if (ee_len
< sbi
->s_ext_min
)
2073 sbi
->s_ext_min
= ee_len
;
2074 if (ee_len
> sbi
->s_ext_max
)
2075 sbi
->s_ext_max
= ee_len
;
2076 if (ext_depth(inode
) > sbi
->s_depth_max
)
2077 sbi
->s_depth_max
= ext_depth(inode
);
2078 spin_unlock(&sbi
->s_ext_stats_lock
);
2081 if (from
>= le32_to_cpu(ex
->ee_block
)
2082 && to
== le32_to_cpu(ex
->ee_block
) + ee_len
- 1) {
2087 num
= le32_to_cpu(ex
->ee_block
) + ee_len
- from
;
2088 start
= ext_pblock(ex
) + ee_len
- num
;
2089 ext_debug("free last %u blocks starting %llu\n", num
, start
);
2090 ext4_free_blocks(handle
, inode
, 0, start
, num
, flags
);
2091 } else if (from
== le32_to_cpu(ex
->ee_block
)
2092 && to
<= le32_to_cpu(ex
->ee_block
) + ee_len
- 1) {
2093 printk(KERN_INFO
"strange request: removal %u-%u from %u:%u\n",
2094 from
, to
, le32_to_cpu(ex
->ee_block
), ee_len
);
2096 printk(KERN_INFO
"strange request: removal(2) "
2097 "%u-%u from %u:%u\n",
2098 from
, to
, le32_to_cpu(ex
->ee_block
), ee_len
);
2104 ext4_ext_rm_leaf(handle_t
*handle
, struct inode
*inode
,
2105 struct ext4_ext_path
*path
, ext4_lblk_t start
)
2107 int err
= 0, correct_index
= 0;
2108 int depth
= ext_depth(inode
), credits
;
2109 struct ext4_extent_header
*eh
;
2110 ext4_lblk_t a
, b
, block
;
2112 ext4_lblk_t ex_ee_block
;
2113 unsigned short ex_ee_len
;
2114 unsigned uninitialized
= 0;
2115 struct ext4_extent
*ex
;
2117 /* the header must be checked already in ext4_ext_remove_space() */
2118 ext_debug("truncate since %u in leaf\n", start
);
2119 if (!path
[depth
].p_hdr
)
2120 path
[depth
].p_hdr
= ext_block_hdr(path
[depth
].p_bh
);
2121 eh
= path
[depth
].p_hdr
;
2124 /* find where to start removing */
2125 ex
= EXT_LAST_EXTENT(eh
);
2127 ex_ee_block
= le32_to_cpu(ex
->ee_block
);
2128 ex_ee_len
= ext4_ext_get_actual_len(ex
);
2130 while (ex
>= EXT_FIRST_EXTENT(eh
) &&
2131 ex_ee_block
+ ex_ee_len
> start
) {
2133 if (ext4_ext_is_uninitialized(ex
))
2138 ext_debug("remove ext %u:[%d]%d\n", ex_ee_block
,
2139 uninitialized
, ex_ee_len
);
2140 path
[depth
].p_ext
= ex
;
2142 a
= ex_ee_block
> start
? ex_ee_block
: start
;
2143 b
= ex_ee_block
+ ex_ee_len
- 1 < EXT_MAX_BLOCK
?
2144 ex_ee_block
+ ex_ee_len
- 1 : EXT_MAX_BLOCK
;
2146 ext_debug(" border %u:%u\n", a
, b
);
2148 if (a
!= ex_ee_block
&& b
!= ex_ee_block
+ ex_ee_len
- 1) {
2152 } else if (a
!= ex_ee_block
) {
2153 /* remove tail of the extent */
2154 block
= ex_ee_block
;
2156 } else if (b
!= ex_ee_block
+ ex_ee_len
- 1) {
2157 /* remove head of the extent */
2160 /* there is no "make a hole" API yet */
2163 /* remove whole extent: excellent! */
2164 block
= ex_ee_block
;
2166 BUG_ON(a
!= ex_ee_block
);
2167 BUG_ON(b
!= ex_ee_block
+ ex_ee_len
- 1);
2171 * 3 for leaf, sb, and inode plus 2 (bmap and group
2172 * descriptor) for each block group; assume two block
2173 * groups plus ex_ee_len/blocks_per_block_group for
2176 credits
= 7 + 2*(ex_ee_len
/EXT4_BLOCKS_PER_GROUP(inode
->i_sb
));
2177 if (ex
== EXT_FIRST_EXTENT(eh
)) {
2179 credits
+= (ext_depth(inode
)) + 1;
2181 credits
+= EXT4_MAXQUOTAS_TRANS_BLOCKS(inode
->i_sb
);
2183 err
= ext4_ext_truncate_extend_restart(handle
, inode
, credits
);
2187 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
2191 err
= ext4_remove_blocks(handle
, inode
, ex
, a
, b
);
2196 /* this extent is removed; mark slot entirely unused */
2197 ext4_ext_store_pblock(ex
, 0);
2198 le16_add_cpu(&eh
->eh_entries
, -1);
2201 ex
->ee_block
= cpu_to_le32(block
);
2202 ex
->ee_len
= cpu_to_le16(num
);
2204 * Do not mark uninitialized if all the blocks in the
2205 * extent have been removed.
2207 if (uninitialized
&& num
)
2208 ext4_ext_mark_uninitialized(ex
);
2210 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
2214 ext_debug("new extent: %u:%u:%llu\n", block
, num
,
2217 ex_ee_block
= le32_to_cpu(ex
->ee_block
);
2218 ex_ee_len
= ext4_ext_get_actual_len(ex
);
2221 if (correct_index
&& eh
->eh_entries
)
2222 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
2224 /* if this leaf is free, then we should
2225 * remove it from index block above */
2226 if (err
== 0 && eh
->eh_entries
== 0 && path
[depth
].p_bh
!= NULL
)
2227 err
= ext4_ext_rm_idx(handle
, inode
, path
+ depth
);
2234 * ext4_ext_more_to_rm:
2235 * returns 1 if current index has to be freed (even partial)
2238 ext4_ext_more_to_rm(struct ext4_ext_path
*path
)
2240 BUG_ON(path
->p_idx
== NULL
);
2242 if (path
->p_idx
< EXT_FIRST_INDEX(path
->p_hdr
))
2246 * if truncate on deeper level happened, it wasn't partial,
2247 * so we have to consider current index for truncation
2249 if (le16_to_cpu(path
->p_hdr
->eh_entries
) == path
->p_block
)
2254 static int ext4_ext_remove_space(struct inode
*inode
, ext4_lblk_t start
)
2256 struct super_block
*sb
= inode
->i_sb
;
2257 int depth
= ext_depth(inode
);
2258 struct ext4_ext_path
*path
;
2262 ext_debug("truncate since %u\n", start
);
2264 /* probably first extent we're gonna free will be last in block */
2265 handle
= ext4_journal_start(inode
, depth
+ 1);
2267 return PTR_ERR(handle
);
2269 ext4_ext_invalidate_cache(inode
);
2272 * We start scanning from right side, freeing all the blocks
2273 * after i_size and walking into the tree depth-wise.
2275 path
= kzalloc(sizeof(struct ext4_ext_path
) * (depth
+ 1), GFP_NOFS
);
2277 ext4_journal_stop(handle
);
2280 path
[0].p_hdr
= ext_inode_hdr(inode
);
2281 if (ext4_ext_check(inode
, path
[0].p_hdr
, depth
)) {
2285 path
[0].p_depth
= depth
;
2287 while (i
>= 0 && err
== 0) {
2289 /* this is leaf block */
2290 err
= ext4_ext_rm_leaf(handle
, inode
, path
, start
);
2291 /* root level has p_bh == NULL, brelse() eats this */
2292 brelse(path
[i
].p_bh
);
2293 path
[i
].p_bh
= NULL
;
2298 /* this is index block */
2299 if (!path
[i
].p_hdr
) {
2300 ext_debug("initialize header\n");
2301 path
[i
].p_hdr
= ext_block_hdr(path
[i
].p_bh
);
2304 if (!path
[i
].p_idx
) {
2305 /* this level hasn't been touched yet */
2306 path
[i
].p_idx
= EXT_LAST_INDEX(path
[i
].p_hdr
);
2307 path
[i
].p_block
= le16_to_cpu(path
[i
].p_hdr
->eh_entries
)+1;
2308 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2310 le16_to_cpu(path
[i
].p_hdr
->eh_entries
));
2312 /* we were already here, see at next index */
2316 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2317 i
, EXT_FIRST_INDEX(path
[i
].p_hdr
),
2319 if (ext4_ext_more_to_rm(path
+ i
)) {
2320 struct buffer_head
*bh
;
2321 /* go to the next level */
2322 ext_debug("move to level %d (block %llu)\n",
2323 i
+ 1, idx_pblock(path
[i
].p_idx
));
2324 memset(path
+ i
+ 1, 0, sizeof(*path
));
2325 bh
= sb_bread(sb
, idx_pblock(path
[i
].p_idx
));
2327 /* should we reset i_size? */
2331 if (WARN_ON(i
+ 1 > depth
)) {
2335 if (ext4_ext_check(inode
, ext_block_hdr(bh
),
2340 path
[i
+ 1].p_bh
= bh
;
2342 /* save actual number of indexes since this
2343 * number is changed at the next iteration */
2344 path
[i
].p_block
= le16_to_cpu(path
[i
].p_hdr
->eh_entries
);
2347 /* we finished processing this index, go up */
2348 if (path
[i
].p_hdr
->eh_entries
== 0 && i
> 0) {
2349 /* index is empty, remove it;
2350 * handle must be already prepared by the
2351 * truncatei_leaf() */
2352 err
= ext4_ext_rm_idx(handle
, inode
, path
+ i
);
2354 /* root level has p_bh == NULL, brelse() eats this */
2355 brelse(path
[i
].p_bh
);
2356 path
[i
].p_bh
= NULL
;
2358 ext_debug("return to level %d\n", i
);
2362 /* TODO: flexible tree reduction should be here */
2363 if (path
->p_hdr
->eh_entries
== 0) {
2365 * truncate to zero freed all the tree,
2366 * so we need to correct eh_depth
2368 err
= ext4_ext_get_access(handle
, inode
, path
);
2370 ext_inode_hdr(inode
)->eh_depth
= 0;
2371 ext_inode_hdr(inode
)->eh_max
=
2372 cpu_to_le16(ext4_ext_space_root(inode
, 0));
2373 err
= ext4_ext_dirty(handle
, inode
, path
);
2377 ext4_ext_drop_refs(path
);
2379 ext4_journal_stop(handle
);
2385 * called at mount time
2387 void ext4_ext_init(struct super_block
*sb
)
2390 * possible initialization would be here
2393 if (EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_EXTENTS
)) {
2394 #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
2395 printk(KERN_INFO
"EXT4-fs: file extents enabled");
2396 #ifdef AGGRESSIVE_TEST
2397 printk(", aggressive tests");
2399 #ifdef CHECK_BINSEARCH
2400 printk(", check binsearch");
2402 #ifdef EXTENTS_STATS
2407 #ifdef EXTENTS_STATS
2408 spin_lock_init(&EXT4_SB(sb
)->s_ext_stats_lock
);
2409 EXT4_SB(sb
)->s_ext_min
= 1 << 30;
2410 EXT4_SB(sb
)->s_ext_max
= 0;
2416 * called at umount time
2418 void ext4_ext_release(struct super_block
*sb
)
2420 if (!EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_EXTENTS
))
2423 #ifdef EXTENTS_STATS
2424 if (EXT4_SB(sb
)->s_ext_blocks
&& EXT4_SB(sb
)->s_ext_extents
) {
2425 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
2426 printk(KERN_ERR
"EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2427 sbi
->s_ext_blocks
, sbi
->s_ext_extents
,
2428 sbi
->s_ext_blocks
/ sbi
->s_ext_extents
);
2429 printk(KERN_ERR
"EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2430 sbi
->s_ext_min
, sbi
->s_ext_max
, sbi
->s_depth_max
);
2435 static void bi_complete(struct bio
*bio
, int error
)
2437 complete((struct completion
*)bio
->bi_private
);
2440 /* FIXME!! we need to try to merge to left or right after zero-out */
2441 static int ext4_ext_zeroout(struct inode
*inode
, struct ext4_extent
*ex
)
2445 int blkbits
, blocksize
;
2447 struct completion event
;
2448 unsigned int ee_len
, len
, done
, offset
;
2451 blkbits
= inode
->i_blkbits
;
2452 blocksize
= inode
->i_sb
->s_blocksize
;
2453 ee_len
= ext4_ext_get_actual_len(ex
);
2454 ee_pblock
= ext_pblock(ex
);
2456 /* convert ee_pblock to 512 byte sectors */
2457 ee_pblock
= ee_pblock
<< (blkbits
- 9);
2459 while (ee_len
> 0) {
2461 if (ee_len
> BIO_MAX_PAGES
)
2462 len
= BIO_MAX_PAGES
;
2466 bio
= bio_alloc(GFP_NOIO
, len
);
2467 bio
->bi_sector
= ee_pblock
;
2468 bio
->bi_bdev
= inode
->i_sb
->s_bdev
;
2472 while (done
< len
) {
2473 ret
= bio_add_page(bio
, ZERO_PAGE(0),
2475 if (ret
!= blocksize
) {
2477 * We can't add any more pages because of
2478 * hardware limitations. Start a new bio.
2483 offset
+= blocksize
;
2484 if (offset
>= PAGE_CACHE_SIZE
)
2488 init_completion(&event
);
2489 bio
->bi_private
= &event
;
2490 bio
->bi_end_io
= bi_complete
;
2491 submit_bio(WRITE
, bio
);
2492 wait_for_completion(&event
);
2494 if (test_bit(BIO_UPTODATE
, &bio
->bi_flags
))
2502 ee_pblock
+= done
<< (blkbits
- 9);
2507 #define EXT4_EXT_ZERO_LEN 7
2509 * This function is called by ext4_ext_get_blocks() if someone tries to write
2510 * to an uninitialized extent. It may result in splitting the uninitialized
2511 * extent into multiple extents (upto three - one initialized and two
2513 * There are three possibilities:
2514 * a> There is no split required: Entire extent should be initialized
2515 * b> Splits in two extents: Write is happening at either end of the extent
2516 * c> Splits in three extents: Somone is writing in middle of the extent
2518 static int ext4_ext_convert_to_initialized(handle_t
*handle
,
2519 struct inode
*inode
,
2520 struct ext4_ext_path
*path
,
2522 unsigned int max_blocks
)
2524 struct ext4_extent
*ex
, newex
, orig_ex
;
2525 struct ext4_extent
*ex1
= NULL
;
2526 struct ext4_extent
*ex2
= NULL
;
2527 struct ext4_extent
*ex3
= NULL
;
2528 struct ext4_extent_header
*eh
;
2529 ext4_lblk_t ee_block
;
2530 unsigned int allocated
, ee_len
, depth
;
2531 ext4_fsblk_t newblock
;
2535 depth
= ext_depth(inode
);
2536 eh
= path
[depth
].p_hdr
;
2537 ex
= path
[depth
].p_ext
;
2538 ee_block
= le32_to_cpu(ex
->ee_block
);
2539 ee_len
= ext4_ext_get_actual_len(ex
);
2540 allocated
= ee_len
- (iblock
- ee_block
);
2541 newblock
= iblock
- ee_block
+ ext_pblock(ex
);
2543 orig_ex
.ee_block
= ex
->ee_block
;
2544 orig_ex
.ee_len
= cpu_to_le16(ee_len
);
2545 ext4_ext_store_pblock(&orig_ex
, ext_pblock(ex
));
2547 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
2550 /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
2551 if (ee_len
<= 2*EXT4_EXT_ZERO_LEN
) {
2552 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2554 goto fix_extent_len
;
2555 /* update the extent length and mark as initialized */
2556 ex
->ee_block
= orig_ex
.ee_block
;
2557 ex
->ee_len
= orig_ex
.ee_len
;
2558 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2559 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2560 /* zeroed the full extent */
2564 /* ex1: ee_block to iblock - 1 : uninitialized */
2565 if (iblock
> ee_block
) {
2567 ex1
->ee_len
= cpu_to_le16(iblock
- ee_block
);
2568 ext4_ext_mark_uninitialized(ex1
);
2572 * for sanity, update the length of the ex2 extent before
2573 * we insert ex3, if ex1 is NULL. This is to avoid temporary
2574 * overlap of blocks.
2576 if (!ex1
&& allocated
> max_blocks
)
2577 ex2
->ee_len
= cpu_to_le16(max_blocks
);
2578 /* ex3: to ee_block + ee_len : uninitialised */
2579 if (allocated
> max_blocks
) {
2580 unsigned int newdepth
;
2581 /* If extent has less than EXT4_EXT_ZERO_LEN zerout directly */
2582 if (allocated
<= EXT4_EXT_ZERO_LEN
) {
2584 * iblock == ee_block is handled by the zerouout
2586 * Mark first half uninitialized.
2587 * Mark second half initialized and zero out the
2588 * initialized extent
2590 ex
->ee_block
= orig_ex
.ee_block
;
2591 ex
->ee_len
= cpu_to_le16(ee_len
- allocated
);
2592 ext4_ext_mark_uninitialized(ex
);
2593 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2594 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2597 ex3
->ee_block
= cpu_to_le32(iblock
);
2598 ext4_ext_store_pblock(ex3
, newblock
);
2599 ex3
->ee_len
= cpu_to_le16(allocated
);
2600 err
= ext4_ext_insert_extent(handle
, inode
, path
,
2602 if (err
== -ENOSPC
) {
2603 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2605 goto fix_extent_len
;
2606 ex
->ee_block
= orig_ex
.ee_block
;
2607 ex
->ee_len
= orig_ex
.ee_len
;
2608 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2609 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2610 /* blocks available from iblock */
2614 goto fix_extent_len
;
2617 * We need to zero out the second half because
2618 * an fallocate request can update file size and
2619 * converting the second half to initialized extent
2620 * implies that we can leak some junk data to user
2623 err
= ext4_ext_zeroout(inode
, ex3
);
2626 * We should actually mark the
2627 * second half as uninit and return error
2628 * Insert would have changed the extent
2630 depth
= ext_depth(inode
);
2631 ext4_ext_drop_refs(path
);
2632 path
= ext4_ext_find_extent(inode
,
2635 err
= PTR_ERR(path
);
2638 /* get the second half extent details */
2639 ex
= path
[depth
].p_ext
;
2640 err
= ext4_ext_get_access(handle
, inode
,
2644 ext4_ext_mark_uninitialized(ex
);
2645 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2649 /* zeroed the second half */
2653 ex3
->ee_block
= cpu_to_le32(iblock
+ max_blocks
);
2654 ext4_ext_store_pblock(ex3
, newblock
+ max_blocks
);
2655 ex3
->ee_len
= cpu_to_le16(allocated
- max_blocks
);
2656 ext4_ext_mark_uninitialized(ex3
);
2657 err
= ext4_ext_insert_extent(handle
, inode
, path
, ex3
, 0);
2658 if (err
== -ENOSPC
) {
2659 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2661 goto fix_extent_len
;
2662 /* update the extent length and mark as initialized */
2663 ex
->ee_block
= orig_ex
.ee_block
;
2664 ex
->ee_len
= orig_ex
.ee_len
;
2665 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2666 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2667 /* zeroed the full extent */
2668 /* blocks available from iblock */
2672 goto fix_extent_len
;
2674 * The depth, and hence eh & ex might change
2675 * as part of the insert above.
2677 newdepth
= ext_depth(inode
);
2679 * update the extent length after successful insert of the
2682 orig_ex
.ee_len
= cpu_to_le16(ee_len
-
2683 ext4_ext_get_actual_len(ex3
));
2685 ext4_ext_drop_refs(path
);
2686 path
= ext4_ext_find_extent(inode
, iblock
, path
);
2688 err
= PTR_ERR(path
);
2691 eh
= path
[depth
].p_hdr
;
2692 ex
= path
[depth
].p_ext
;
2696 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
2700 allocated
= max_blocks
;
2702 /* If extent has less than EXT4_EXT_ZERO_LEN and we are trying
2703 * to insert a extent in the middle zerout directly
2704 * otherwise give the extent a chance to merge to left
2706 if (le16_to_cpu(orig_ex
.ee_len
) <= EXT4_EXT_ZERO_LEN
&&
2707 iblock
!= ee_block
) {
2708 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2710 goto fix_extent_len
;
2711 /* update the extent length and mark as initialized */
2712 ex
->ee_block
= orig_ex
.ee_block
;
2713 ex
->ee_len
= orig_ex
.ee_len
;
2714 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2715 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2716 /* zero out the first half */
2717 /* blocks available from iblock */
2722 * If there was a change of depth as part of the
2723 * insertion of ex3 above, we need to update the length
2724 * of the ex1 extent again here
2726 if (ex1
&& ex1
!= ex
) {
2728 ex1
->ee_len
= cpu_to_le16(iblock
- ee_block
);
2729 ext4_ext_mark_uninitialized(ex1
);
2732 /* ex2: iblock to iblock + maxblocks-1 : initialised */
2733 ex2
->ee_block
= cpu_to_le32(iblock
);
2734 ext4_ext_store_pblock(ex2
, newblock
);
2735 ex2
->ee_len
= cpu_to_le16(allocated
);
2739 * New (initialized) extent starts from the first block
2740 * in the current extent. i.e., ex2 == ex
2741 * We have to see if it can be merged with the extent
2744 if (ex2
> EXT_FIRST_EXTENT(eh
)) {
2746 * To merge left, pass "ex2 - 1" to try_to_merge(),
2747 * since it merges towards right _only_.
2749 ret
= ext4_ext_try_to_merge(inode
, path
, ex2
- 1);
2751 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
2754 depth
= ext_depth(inode
);
2759 * Try to Merge towards right. This might be required
2760 * only when the whole extent is being written to.
2761 * i.e. ex2 == ex and ex3 == NULL.
2764 ret
= ext4_ext_try_to_merge(inode
, path
, ex2
);
2766 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
2771 /* Mark modified extent as dirty */
2772 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
2775 err
= ext4_ext_insert_extent(handle
, inode
, path
, &newex
, 0);
2776 if (err
== -ENOSPC
) {
2777 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2779 goto fix_extent_len
;
2780 /* update the extent length and mark as initialized */
2781 ex
->ee_block
= orig_ex
.ee_block
;
2782 ex
->ee_len
= orig_ex
.ee_len
;
2783 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2784 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2785 /* zero out the first half */
2788 goto fix_extent_len
;
2790 ext4_ext_show_leaf(inode
, path
);
2791 return err
? err
: allocated
;
2794 ex
->ee_block
= orig_ex
.ee_block
;
2795 ex
->ee_len
= orig_ex
.ee_len
;
2796 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2797 ext4_ext_mark_uninitialized(ex
);
2798 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2803 * This function is called by ext4_ext_get_blocks() from
2804 * ext4_get_blocks_dio_write() when DIO to write
2805 * to an uninitialized extent.
2807 * Writing to an uninitized extent may result in splitting the uninitialized
2808 * extent into multiple /intialized unintialized extents (up to three)
2809 * There are three possibilities:
2810 * a> There is no split required: Entire extent should be uninitialized
2811 * b> Splits in two extents: Write is happening at either end of the extent
2812 * c> Splits in three extents: Somone is writing in middle of the extent
2814 * One of more index blocks maybe needed if the extent tree grow after
2815 * the unintialized extent split. To prevent ENOSPC occur at the IO
2816 * complete, we need to split the uninitialized extent before DIO submit
2817 * the IO. The uninitilized extent called at this time will be split
2818 * into three uninitialized extent(at most). After IO complete, the part
2819 * being filled will be convert to initialized by the end_io callback function
2820 * via ext4_convert_unwritten_extents().
2822 * Returns the size of uninitialized extent to be written on success.
2824 static int ext4_split_unwritten_extents(handle_t
*handle
,
2825 struct inode
*inode
,
2826 struct ext4_ext_path
*path
,
2828 unsigned int max_blocks
,
2831 struct ext4_extent
*ex
, newex
, orig_ex
;
2832 struct ext4_extent
*ex1
= NULL
;
2833 struct ext4_extent
*ex2
= NULL
;
2834 struct ext4_extent
*ex3
= NULL
;
2835 struct ext4_extent_header
*eh
;
2836 ext4_lblk_t ee_block
;
2837 unsigned int allocated
, ee_len
, depth
;
2838 ext4_fsblk_t newblock
;
2841 ext_debug("ext4_split_unwritten_extents: inode %lu,"
2842 "iblock %llu, max_blocks %u\n", inode
->i_ino
,
2843 (unsigned long long)iblock
, max_blocks
);
2844 depth
= ext_depth(inode
);
2845 eh
= path
[depth
].p_hdr
;
2846 ex
= path
[depth
].p_ext
;
2847 ee_block
= le32_to_cpu(ex
->ee_block
);
2848 ee_len
= ext4_ext_get_actual_len(ex
);
2849 allocated
= ee_len
- (iblock
- ee_block
);
2850 newblock
= iblock
- ee_block
+ ext_pblock(ex
);
2852 orig_ex
.ee_block
= ex
->ee_block
;
2853 orig_ex
.ee_len
= cpu_to_le16(ee_len
);
2854 ext4_ext_store_pblock(&orig_ex
, ext_pblock(ex
));
2857 * If the uninitialized extent begins at the same logical
2858 * block where the write begins, and the write completely
2859 * covers the extent, then we don't need to split it.
2861 if ((iblock
== ee_block
) && (allocated
<= max_blocks
))
2864 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
2867 /* ex1: ee_block to iblock - 1 : uninitialized */
2868 if (iblock
> ee_block
) {
2870 ex1
->ee_len
= cpu_to_le16(iblock
- ee_block
);
2871 ext4_ext_mark_uninitialized(ex1
);
2875 * for sanity, update the length of the ex2 extent before
2876 * we insert ex3, if ex1 is NULL. This is to avoid temporary
2877 * overlap of blocks.
2879 if (!ex1
&& allocated
> max_blocks
)
2880 ex2
->ee_len
= cpu_to_le16(max_blocks
);
2881 /* ex3: to ee_block + ee_len : uninitialised */
2882 if (allocated
> max_blocks
) {
2883 unsigned int newdepth
;
2885 ex3
->ee_block
= cpu_to_le32(iblock
+ max_blocks
);
2886 ext4_ext_store_pblock(ex3
, newblock
+ max_blocks
);
2887 ex3
->ee_len
= cpu_to_le16(allocated
- max_blocks
);
2888 ext4_ext_mark_uninitialized(ex3
);
2889 err
= ext4_ext_insert_extent(handle
, inode
, path
, ex3
, flags
);
2890 if (err
== -ENOSPC
) {
2891 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2893 goto fix_extent_len
;
2894 /* update the extent length and mark as initialized */
2895 ex
->ee_block
= orig_ex
.ee_block
;
2896 ex
->ee_len
= orig_ex
.ee_len
;
2897 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2898 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2899 /* zeroed the full extent */
2900 /* blocks available from iblock */
2904 goto fix_extent_len
;
2906 * The depth, and hence eh & ex might change
2907 * as part of the insert above.
2909 newdepth
= ext_depth(inode
);
2911 * update the extent length after successful insert of the
2914 orig_ex
.ee_len
= cpu_to_le16(ee_len
-
2915 ext4_ext_get_actual_len(ex3
));
2917 ext4_ext_drop_refs(path
);
2918 path
= ext4_ext_find_extent(inode
, iblock
, path
);
2920 err
= PTR_ERR(path
);
2923 eh
= path
[depth
].p_hdr
;
2924 ex
= path
[depth
].p_ext
;
2928 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
2932 allocated
= max_blocks
;
2935 * If there was a change of depth as part of the
2936 * insertion of ex3 above, we need to update the length
2937 * of the ex1 extent again here
2939 if (ex1
&& ex1
!= ex
) {
2941 ex1
->ee_len
= cpu_to_le16(iblock
- ee_block
);
2942 ext4_ext_mark_uninitialized(ex1
);
2946 * ex2: iblock to iblock + maxblocks-1 : to be direct IO written,
2947 * uninitialised still.
2949 ex2
->ee_block
= cpu_to_le32(iblock
);
2950 ext4_ext_store_pblock(ex2
, newblock
);
2951 ex2
->ee_len
= cpu_to_le16(allocated
);
2952 ext4_ext_mark_uninitialized(ex2
);
2955 /* Mark modified extent as dirty */
2956 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
2957 ext_debug("out here\n");
2960 err
= ext4_ext_insert_extent(handle
, inode
, path
, &newex
, flags
);
2961 if (err
== -ENOSPC
) {
2962 err
= ext4_ext_zeroout(inode
, &orig_ex
);
2964 goto fix_extent_len
;
2965 /* update the extent length and mark as initialized */
2966 ex
->ee_block
= orig_ex
.ee_block
;
2967 ex
->ee_len
= orig_ex
.ee_len
;
2968 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2969 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2970 /* zero out the first half */
2973 goto fix_extent_len
;
2975 ext4_ext_show_leaf(inode
, path
);
2976 return err
? err
: allocated
;
2979 ex
->ee_block
= orig_ex
.ee_block
;
2980 ex
->ee_len
= orig_ex
.ee_len
;
2981 ext4_ext_store_pblock(ex
, ext_pblock(&orig_ex
));
2982 ext4_ext_mark_uninitialized(ex
);
2983 ext4_ext_dirty(handle
, inode
, path
+ depth
);
2986 static int ext4_convert_unwritten_extents_dio(handle_t
*handle
,
2987 struct inode
*inode
,
2988 struct ext4_ext_path
*path
)
2990 struct ext4_extent
*ex
;
2991 struct ext4_extent_header
*eh
;
2996 depth
= ext_depth(inode
);
2997 eh
= path
[depth
].p_hdr
;
2998 ex
= path
[depth
].p_ext
;
3000 err
= ext4_ext_get_access(handle
, inode
, path
+ depth
);
3003 /* first mark the extent as initialized */
3004 ext4_ext_mark_initialized(ex
);
3007 * We have to see if it can be merged with the extent
3010 if (ex
> EXT_FIRST_EXTENT(eh
)) {
3012 * To merge left, pass "ex - 1" to try_to_merge(),
3013 * since it merges towards right _only_.
3015 ret
= ext4_ext_try_to_merge(inode
, path
, ex
- 1);
3017 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
3020 depth
= ext_depth(inode
);
3025 * Try to Merge towards right.
3027 ret
= ext4_ext_try_to_merge(inode
, path
, ex
);
3029 err
= ext4_ext_correct_indexes(handle
, inode
, path
);
3032 depth
= ext_depth(inode
);
3034 /* Mark modified extent as dirty */
3035 err
= ext4_ext_dirty(handle
, inode
, path
+ depth
);
3037 ext4_ext_show_leaf(inode
, path
);
3041 static void unmap_underlying_metadata_blocks(struct block_device
*bdev
,
3042 sector_t block
, int count
)
3045 for (i
= 0; i
< count
; i
++)
3046 unmap_underlying_metadata(bdev
, block
+ i
);
3050 ext4_ext_handle_uninitialized_extents(handle_t
*handle
, struct inode
*inode
,
3051 ext4_lblk_t iblock
, unsigned int max_blocks
,
3052 struct ext4_ext_path
*path
, int flags
,
3053 unsigned int allocated
, struct buffer_head
*bh_result
,
3054 ext4_fsblk_t newblock
)
3058 ext4_io_end_t
*io
= EXT4_I(inode
)->cur_aio_dio
;
3060 ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical"
3061 "block %llu, max_blocks %u, flags %d, allocated %u",
3062 inode
->i_ino
, (unsigned long long)iblock
, max_blocks
,
3064 ext4_ext_show_leaf(inode
, path
);
3066 /* DIO get_block() before submit the IO, split the extent */
3067 if (flags
== EXT4_GET_BLOCKS_DIO_CREATE_EXT
) {
3068 ret
= ext4_split_unwritten_extents(handle
,
3069 inode
, path
, iblock
,
3072 * Flag the inode(non aio case) or end_io struct (aio case)
3073 * that this IO needs to convertion to written when IO is
3077 io
->flag
= DIO_AIO_UNWRITTEN
;
3079 EXT4_I(inode
)->i_state
|= EXT4_STATE_DIO_UNWRITTEN
;
3082 /* async DIO end_io complete, convert the filled extent to written */
3083 if (flags
== EXT4_GET_BLOCKS_DIO_CONVERT_EXT
) {
3084 ret
= ext4_convert_unwritten_extents_dio(handle
, inode
,
3087 ext4_update_inode_fsync_trans(handle
, inode
, 1);
3090 /* buffered IO case */
3092 * repeat fallocate creation request
3093 * we already have an unwritten extent
3095 if (flags
& EXT4_GET_BLOCKS_UNINIT_EXT
)
3098 /* buffered READ or buffered write_begin() lookup */
3099 if ((flags
& EXT4_GET_BLOCKS_CREATE
) == 0) {
3101 * We have blocks reserved already. We
3102 * return allocated blocks so that delalloc
3103 * won't do block reservation for us. But
3104 * the buffer head will be unmapped so that
3105 * a read from the block returns 0s.
3107 set_buffer_unwritten(bh_result
);
3111 /* buffered write, writepage time, convert*/
3112 ret
= ext4_ext_convert_to_initialized(handle
, inode
,
3116 ext4_update_inode_fsync_trans(handle
, inode
, 1);
3123 set_buffer_new(bh_result
);
3125 * if we allocated more blocks than requested
3126 * we need to make sure we unmap the extra block
3127 * allocated. The actual needed block will get
3128 * unmapped later when we find the buffer_head marked
3131 if (allocated
> max_blocks
) {
3132 unmap_underlying_metadata_blocks(inode
->i_sb
->s_bdev
,
3133 newblock
+ max_blocks
,
3134 allocated
- max_blocks
);
3135 allocated
= max_blocks
;
3139 * If we have done fallocate with the offset that is already
3140 * delayed allocated, we would have block reservation
3141 * and quota reservation done in the delayed write path.
3142 * But fallocate would have already updated quota and block
3143 * count for this offset. So cancel these reservation
3145 if (flags
& EXT4_GET_BLOCKS_DELALLOC_RESERVE
)
3146 ext4_da_update_reserve_space(inode
, allocated
, 0);
3149 set_buffer_mapped(bh_result
);
3151 if (allocated
> max_blocks
)
3152 allocated
= max_blocks
;
3153 ext4_ext_show_leaf(inode
, path
);
3154 bh_result
->b_bdev
= inode
->i_sb
->s_bdev
;
3155 bh_result
->b_blocknr
= newblock
;
3158 ext4_ext_drop_refs(path
);
3161 return err
? err
: allocated
;
3164 * Block allocation/map/preallocation routine for extents based files
3167 * Need to be called with
3168 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
3169 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
3171 * return > 0, number of of blocks already mapped/allocated
3172 * if create == 0 and these are pre-allocated blocks
3173 * buffer head is unmapped
3174 * otherwise blocks are mapped
3176 * return = 0, if plain look up failed (blocks have not been allocated)
3177 * buffer head is unmapped
3179 * return < 0, error case.
3181 int ext4_ext_get_blocks(handle_t
*handle
, struct inode
*inode
,
3183 unsigned int max_blocks
, struct buffer_head
*bh_result
,
3186 struct ext4_ext_path
*path
= NULL
;
3187 struct ext4_extent_header
*eh
;
3188 struct ext4_extent newex
, *ex
;
3189 ext4_fsblk_t newblock
;
3190 int err
= 0, depth
, ret
, cache_type
;
3191 unsigned int allocated
= 0;
3192 struct ext4_allocation_request ar
;
3193 ext4_io_end_t
*io
= EXT4_I(inode
)->cur_aio_dio
;
3195 __clear_bit(BH_New
, &bh_result
->b_state
);
3196 ext_debug("blocks %u/%u requested for inode %lu\n",
3197 iblock
, max_blocks
, inode
->i_ino
);
3199 /* check in cache */
3200 cache_type
= ext4_ext_in_cache(inode
, iblock
, &newex
);
3202 if (cache_type
== EXT4_EXT_CACHE_GAP
) {
3203 if ((flags
& EXT4_GET_BLOCKS_CREATE
) == 0) {
3205 * block isn't allocated yet and
3206 * user doesn't want to allocate it
3210 /* we should allocate requested block */
3211 } else if (cache_type
== EXT4_EXT_CACHE_EXTENT
) {
3212 /* block is already allocated */
3214 - le32_to_cpu(newex
.ee_block
)
3215 + ext_pblock(&newex
);
3216 /* number of remaining blocks in the extent */
3217 allocated
= ext4_ext_get_actual_len(&newex
) -
3218 (iblock
- le32_to_cpu(newex
.ee_block
));
3225 /* find extent for this block */
3226 path
= ext4_ext_find_extent(inode
, iblock
, NULL
);
3228 err
= PTR_ERR(path
);
3233 depth
= ext_depth(inode
);
3236 * consistent leaf must not be empty;
3237 * this situation is possible, though, _during_ tree modification;
3238 * this is why assert can't be put in ext4_ext_find_extent()
3240 if (path
[depth
].p_ext
== NULL
&& depth
!= 0) {
3241 ext4_error(inode
->i_sb
, __func__
, "bad extent address "
3242 "inode: %lu, iblock: %d, depth: %d",
3243 inode
->i_ino
, iblock
, depth
);
3247 eh
= path
[depth
].p_hdr
;
3249 ex
= path
[depth
].p_ext
;
3251 ext4_lblk_t ee_block
= le32_to_cpu(ex
->ee_block
);
3252 ext4_fsblk_t ee_start
= ext_pblock(ex
);
3253 unsigned short ee_len
;
3256 * Uninitialized extents are treated as holes, except that
3257 * we split out initialized portions during a write.
3259 ee_len
= ext4_ext_get_actual_len(ex
);
3260 /* if found extent covers block, simply return it */
3261 if (iblock
>= ee_block
&& iblock
< ee_block
+ ee_len
) {
3262 newblock
= iblock
- ee_block
+ ee_start
;
3263 /* number of remaining blocks in the extent */
3264 allocated
= ee_len
- (iblock
- ee_block
);
3265 ext_debug("%u fit into %u:%d -> %llu\n", iblock
,
3266 ee_block
, ee_len
, newblock
);
3268 /* Do not put uninitialized extent in the cache */
3269 if (!ext4_ext_is_uninitialized(ex
)) {
3270 ext4_ext_put_in_cache(inode
, ee_block
,
3272 EXT4_EXT_CACHE_EXTENT
);
3275 ret
= ext4_ext_handle_uninitialized_extents(handle
,
3276 inode
, iblock
, max_blocks
, path
,
3277 flags
, allocated
, bh_result
, newblock
);
3283 * requested block isn't allocated yet;
3284 * we couldn't try to create block if create flag is zero
3286 if ((flags
& EXT4_GET_BLOCKS_CREATE
) == 0) {
3288 * put just found gap into cache to speed up
3289 * subsequent requests
3291 ext4_ext_put_gap_in_cache(inode
, path
, iblock
);
3295 * Okay, we need to do block allocation.
3298 /* find neighbour allocated blocks */
3300 err
= ext4_ext_search_left(inode
, path
, &ar
.lleft
, &ar
.pleft
);
3304 err
= ext4_ext_search_right(inode
, path
, &ar
.lright
, &ar
.pright
);
3309 * See if request is beyond maximum number of blocks we can have in
3310 * a single extent. For an initialized extent this limit is
3311 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
3312 * EXT_UNINIT_MAX_LEN.
3314 if (max_blocks
> EXT_INIT_MAX_LEN
&&
3315 !(flags
& EXT4_GET_BLOCKS_UNINIT_EXT
))
3316 max_blocks
= EXT_INIT_MAX_LEN
;
3317 else if (max_blocks
> EXT_UNINIT_MAX_LEN
&&
3318 (flags
& EXT4_GET_BLOCKS_UNINIT_EXT
))
3319 max_blocks
= EXT_UNINIT_MAX_LEN
;
3321 /* Check if we can really insert (iblock)::(iblock+max_blocks) extent */
3322 newex
.ee_block
= cpu_to_le32(iblock
);
3323 newex
.ee_len
= cpu_to_le16(max_blocks
);
3324 err
= ext4_ext_check_overlap(inode
, &newex
, path
);
3326 allocated
= ext4_ext_get_actual_len(&newex
);
3328 allocated
= max_blocks
;
3330 /* allocate new block */
3332 ar
.goal
= ext4_ext_find_goal(inode
, path
, iblock
);
3333 ar
.logical
= iblock
;
3335 if (S_ISREG(inode
->i_mode
))
3336 ar
.flags
= EXT4_MB_HINT_DATA
;
3338 /* disable in-core preallocation for non-regular files */
3340 newblock
= ext4_mb_new_blocks(handle
, &ar
, &err
);
3343 ext_debug("allocate new block: goal %llu, found %llu/%u\n",
3344 ar
.goal
, newblock
, allocated
);
3346 /* try to insert new extent into found leaf and return */
3347 ext4_ext_store_pblock(&newex
, newblock
);
3348 newex
.ee_len
= cpu_to_le16(ar
.len
);
3349 /* Mark uninitialized */
3350 if (flags
& EXT4_GET_BLOCKS_UNINIT_EXT
){
3351 ext4_ext_mark_uninitialized(&newex
);
3353 * io_end structure was created for every async
3354 * direct IO write to the middle of the file.
3355 * To avoid unecessary convertion for every aio dio rewrite
3356 * to the mid of file, here we flag the IO that is really
3357 * need the convertion.
3358 * For non asycn direct IO case, flag the inode state
3359 * that we need to perform convertion when IO is done.
3361 if (flags
== EXT4_GET_BLOCKS_DIO_CREATE_EXT
) {
3363 io
->flag
= DIO_AIO_UNWRITTEN
;
3365 EXT4_I(inode
)->i_state
|=
3366 EXT4_STATE_DIO_UNWRITTEN
;;
3369 err
= ext4_ext_insert_extent(handle
, inode
, path
, &newex
, flags
);
3371 /* free data blocks we just allocated */
3372 /* not a good idea to call discard here directly,
3373 * but otherwise we'd need to call it every free() */
3374 ext4_discard_preallocations(inode
);
3375 ext4_free_blocks(handle
, inode
, 0, ext_pblock(&newex
),
3376 ext4_ext_get_actual_len(&newex
), 0);
3380 /* previous routine could use block we allocated */
3381 newblock
= ext_pblock(&newex
);
3382 allocated
= ext4_ext_get_actual_len(&newex
);
3383 if (allocated
> max_blocks
)
3384 allocated
= max_blocks
;
3385 set_buffer_new(bh_result
);
3388 * Update reserved blocks/metadata blocks after successful
3389 * block allocation which had been deferred till now.
3391 if (flags
& EXT4_GET_BLOCKS_DELALLOC_RESERVE
)
3392 ext4_da_update_reserve_space(inode
, allocated
, 1);
3395 * Cache the extent and update transaction to commit on fdatasync only
3396 * when it is _not_ an uninitialized extent.
3398 if ((flags
& EXT4_GET_BLOCKS_UNINIT_EXT
) == 0) {
3399 ext4_ext_put_in_cache(inode
, iblock
, allocated
, newblock
,
3400 EXT4_EXT_CACHE_EXTENT
);
3401 ext4_update_inode_fsync_trans(handle
, inode
, 1);
3403 ext4_update_inode_fsync_trans(handle
, inode
, 0);
3405 if (allocated
> max_blocks
)
3406 allocated
= max_blocks
;
3407 ext4_ext_show_leaf(inode
, path
);
3408 set_buffer_mapped(bh_result
);
3409 bh_result
->b_bdev
= inode
->i_sb
->s_bdev
;
3410 bh_result
->b_blocknr
= newblock
;
3413 ext4_ext_drop_refs(path
);
3416 return err
? err
: allocated
;
3419 void ext4_ext_truncate(struct inode
*inode
)
3421 struct address_space
*mapping
= inode
->i_mapping
;
3422 struct super_block
*sb
= inode
->i_sb
;
3423 ext4_lblk_t last_block
;
3428 * probably first extent we're gonna free will be last in block
3430 err
= ext4_writepage_trans_blocks(inode
);
3431 handle
= ext4_journal_start(inode
, err
);
3435 if (inode
->i_size
& (sb
->s_blocksize
- 1))
3436 ext4_block_truncate_page(handle
, mapping
, inode
->i_size
);
3438 if (ext4_orphan_add(handle
, inode
))
3441 down_write(&EXT4_I(inode
)->i_data_sem
);
3442 ext4_ext_invalidate_cache(inode
);
3444 ext4_discard_preallocations(inode
);
3447 * TODO: optimization is possible here.
3448 * Probably we need not scan at all,
3449 * because page truncation is enough.
3452 /* we have to know where to truncate from in crash case */
3453 EXT4_I(inode
)->i_disksize
= inode
->i_size
;
3454 ext4_mark_inode_dirty(handle
, inode
);
3456 last_block
= (inode
->i_size
+ sb
->s_blocksize
- 1)
3457 >> EXT4_BLOCK_SIZE_BITS(sb
);
3458 err
= ext4_ext_remove_space(inode
, last_block
);
3460 /* In a multi-transaction truncate, we only make the final
3461 * transaction synchronous.
3464 ext4_handle_sync(handle
);
3467 up_write(&EXT4_I(inode
)->i_data_sem
);
3469 * If this was a simple ftruncate() and the file will remain alive,
3470 * then we need to clear up the orphan record which we created above.
3471 * However, if this was a real unlink then we were called by
3472 * ext4_delete_inode(), and we allow that function to clean up the
3473 * orphan info for us.
3476 ext4_orphan_del(handle
, inode
);
3478 inode
->i_mtime
= inode
->i_ctime
= ext4_current_time(inode
);
3479 ext4_mark_inode_dirty(handle
, inode
);
3480 ext4_journal_stop(handle
);
3483 static void ext4_falloc_update_inode(struct inode
*inode
,
3484 int mode
, loff_t new_size
, int update_ctime
)
3486 struct timespec now
;
3489 now
= current_fs_time(inode
->i_sb
);
3490 if (!timespec_equal(&inode
->i_ctime
, &now
))
3491 inode
->i_ctime
= now
;
3494 * Update only when preallocation was requested beyond
3497 if (!(mode
& FALLOC_FL_KEEP_SIZE
)) {
3498 if (new_size
> i_size_read(inode
))
3499 i_size_write(inode
, new_size
);
3500 if (new_size
> EXT4_I(inode
)->i_disksize
)
3501 ext4_update_i_disksize(inode
, new_size
);
3507 * preallocate space for a file. This implements ext4's fallocate inode
3508 * operation, which gets called from sys_fallocate system call.
3509 * For block-mapped files, posix_fallocate should fall back to the method
3510 * of writing zeroes to the required new blocks (the same behavior which is
3511 * expected for file systems which do not support fallocate() system call).
3513 long ext4_fallocate(struct inode
*inode
, int mode
, loff_t offset
, loff_t len
)
3518 unsigned int max_blocks
;
3522 struct buffer_head map_bh
;
3523 unsigned int credits
, blkbits
= inode
->i_blkbits
;
3526 * currently supporting (pre)allocate mode for extent-based
3529 if (!(EXT4_I(inode
)->i_flags
& EXT4_EXTENTS_FL
))
3532 /* preallocation to directories is currently not supported */
3533 if (S_ISDIR(inode
->i_mode
))
3536 block
= offset
>> blkbits
;
3538 * We can't just convert len to max_blocks because
3539 * If blocksize = 4096 offset = 3072 and len = 2048
3541 max_blocks
= (EXT4_BLOCK_ALIGN(len
+ offset
, blkbits
) >> blkbits
)
3544 * credits to insert 1 extent into extent tree
3546 credits
= ext4_chunk_trans_blocks(inode
, max_blocks
);
3547 mutex_lock(&inode
->i_mutex
);
3549 while (ret
>= 0 && ret
< max_blocks
) {
3550 block
= block
+ ret
;
3551 max_blocks
= max_blocks
- ret
;
3552 handle
= ext4_journal_start(inode
, credits
);
3553 if (IS_ERR(handle
)) {
3554 ret
= PTR_ERR(handle
);
3558 ret
= ext4_get_blocks(handle
, inode
, block
,
3559 max_blocks
, &map_bh
,
3560 EXT4_GET_BLOCKS_CREATE_UNINIT_EXT
);
3564 printk(KERN_ERR
"%s: ext4_ext_get_blocks "
3565 "returned error inode#%lu, block=%u, "
3566 "max_blocks=%u", __func__
,
3567 inode
->i_ino
, block
, max_blocks
);
3569 ext4_mark_inode_dirty(handle
, inode
);
3570 ret2
= ext4_journal_stop(handle
);
3573 if ((block
+ ret
) >= (EXT4_BLOCK_ALIGN(offset
+ len
,
3574 blkbits
) >> blkbits
))
3575 new_size
= offset
+ len
;
3577 new_size
= (block
+ ret
) << blkbits
;
3579 ext4_falloc_update_inode(inode
, mode
, new_size
,
3580 buffer_new(&map_bh
));
3581 ext4_mark_inode_dirty(handle
, inode
);
3582 ret2
= ext4_journal_stop(handle
);
3586 if (ret
== -ENOSPC
&&
3587 ext4_should_retry_alloc(inode
->i_sb
, &retries
)) {
3591 mutex_unlock(&inode
->i_mutex
);
3592 return ret
> 0 ? ret2
: ret
;
3596 * This function convert a range of blocks to written extents
3597 * The caller of this function will pass the start offset and the size.
3598 * all unwritten extents within this range will be converted to
3601 * This function is called from the direct IO end io call back
3602 * function, to convert the fallocated extents after IO is completed.
3603 * Returns 0 on success.
3605 int ext4_convert_unwritten_extents(struct inode
*inode
, loff_t offset
,
3610 unsigned int max_blocks
;
3613 struct buffer_head map_bh
;
3614 unsigned int credits
, blkbits
= inode
->i_blkbits
;
3616 block
= offset
>> blkbits
;
3618 * We can't just convert len to max_blocks because
3619 * If blocksize = 4096 offset = 3072 and len = 2048
3621 max_blocks
= (EXT4_BLOCK_ALIGN(len
+ offset
, blkbits
) >> blkbits
)
3624 * credits to insert 1 extent into extent tree
3626 credits
= ext4_chunk_trans_blocks(inode
, max_blocks
);
3627 while (ret
>= 0 && ret
< max_blocks
) {
3628 block
= block
+ ret
;
3629 max_blocks
= max_blocks
- ret
;
3630 handle
= ext4_journal_start(inode
, credits
);
3631 if (IS_ERR(handle
)) {
3632 ret
= PTR_ERR(handle
);
3636 ret
= ext4_get_blocks(handle
, inode
, block
,
3637 max_blocks
, &map_bh
,
3638 EXT4_GET_BLOCKS_DIO_CONVERT_EXT
);
3641 printk(KERN_ERR
"%s: ext4_ext_get_blocks "
3642 "returned error inode#%lu, block=%u, "
3643 "max_blocks=%u", __func__
,
3644 inode
->i_ino
, block
, max_blocks
);
3646 ext4_mark_inode_dirty(handle
, inode
);
3647 ret2
= ext4_journal_stop(handle
);
3648 if (ret
<= 0 || ret2
)
3651 return ret
> 0 ? ret2
: ret
;
3654 * Callback function called for each extent to gather FIEMAP information.
3656 static int ext4_ext_fiemap_cb(struct inode
*inode
, struct ext4_ext_path
*path
,
3657 struct ext4_ext_cache
*newex
, struct ext4_extent
*ex
,
3660 struct fiemap_extent_info
*fieinfo
= data
;
3661 unsigned char blksize_bits
= inode
->i_sb
->s_blocksize_bits
;
3668 logical
= (__u64
)newex
->ec_block
<< blksize_bits
;
3670 if (newex
->ec_type
== EXT4_EXT_CACHE_GAP
) {
3673 struct buffer_head
*bh
= NULL
;
3675 offset
= logical
>> PAGE_SHIFT
;
3676 page
= find_get_page(inode
->i_mapping
, offset
);
3677 if (!page
|| !page_has_buffers(page
))
3678 return EXT_CONTINUE
;
3680 bh
= page_buffers(page
);
3683 return EXT_CONTINUE
;
3685 if (buffer_delay(bh
)) {
3686 flags
|= FIEMAP_EXTENT_DELALLOC
;
3687 page_cache_release(page
);
3689 page_cache_release(page
);
3690 return EXT_CONTINUE
;
3694 physical
= (__u64
)newex
->ec_start
<< blksize_bits
;
3695 length
= (__u64
)newex
->ec_len
<< blksize_bits
;
3697 if (ex
&& ext4_ext_is_uninitialized(ex
))
3698 flags
|= FIEMAP_EXTENT_UNWRITTEN
;
3701 * If this extent reaches EXT_MAX_BLOCK, it must be last.
3703 * Or if ext4_ext_next_allocated_block is EXT_MAX_BLOCK,
3704 * this also indicates no more allocated blocks.
3706 * XXX this might miss a single-block extent at EXT_MAX_BLOCK
3708 if (ext4_ext_next_allocated_block(path
) == EXT_MAX_BLOCK
||
3709 newex
->ec_block
+ newex
->ec_len
- 1 == EXT_MAX_BLOCK
) {
3710 loff_t size
= i_size_read(inode
);
3711 loff_t bs
= EXT4_BLOCK_SIZE(inode
->i_sb
);
3713 flags
|= FIEMAP_EXTENT_LAST
;
3714 if ((flags
& FIEMAP_EXTENT_DELALLOC
) &&
3715 logical
+length
> size
)
3716 length
= (size
- logical
+ bs
- 1) & ~(bs
-1);
3719 error
= fiemap_fill_next_extent(fieinfo
, logical
, physical
,
3726 return EXT_CONTINUE
;
3729 /* fiemap flags we can handle specified here */
3730 #define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
3732 static int ext4_xattr_fiemap(struct inode
*inode
,
3733 struct fiemap_extent_info
*fieinfo
)
3737 __u32 flags
= FIEMAP_EXTENT_LAST
;
3738 int blockbits
= inode
->i_sb
->s_blocksize_bits
;
3742 if (EXT4_I(inode
)->i_state
& EXT4_STATE_XATTR
) {
3743 struct ext4_iloc iloc
;
3744 int offset
; /* offset of xattr in inode */
3746 error
= ext4_get_inode_loc(inode
, &iloc
);
3749 physical
= iloc
.bh
->b_blocknr
<< blockbits
;
3750 offset
= EXT4_GOOD_OLD_INODE_SIZE
+
3751 EXT4_I(inode
)->i_extra_isize
;
3753 length
= EXT4_SB(inode
->i_sb
)->s_inode_size
- offset
;
3754 flags
|= FIEMAP_EXTENT_DATA_INLINE
;
3755 } else { /* external block */
3756 physical
= EXT4_I(inode
)->i_file_acl
<< blockbits
;
3757 length
= inode
->i_sb
->s_blocksize
;
3761 error
= fiemap_fill_next_extent(fieinfo
, 0, physical
,
3763 return (error
< 0 ? error
: 0);
3766 int ext4_fiemap(struct inode
*inode
, struct fiemap_extent_info
*fieinfo
,
3767 __u64 start
, __u64 len
)
3769 ext4_lblk_t start_blk
;
3770 ext4_lblk_t len_blks
;
3773 /* fallback to generic here if not in extents fmt */
3774 if (!(EXT4_I(inode
)->i_flags
& EXT4_EXTENTS_FL
))
3775 return generic_block_fiemap(inode
, fieinfo
, start
, len
,
3778 if (fiemap_check_flags(fieinfo
, EXT4_FIEMAP_FLAGS
))
3781 if (fieinfo
->fi_flags
& FIEMAP_FLAG_XATTR
) {
3782 error
= ext4_xattr_fiemap(inode
, fieinfo
);
3784 start_blk
= start
>> inode
->i_sb
->s_blocksize_bits
;
3785 len_blks
= len
>> inode
->i_sb
->s_blocksize_bits
;
3788 * Walk the extent tree gathering extent information.
3789 * ext4_ext_fiemap_cb will push extents back to user.
3791 error
= ext4_ext_walk_space(inode
, start_blk
, len_blks
,
3792 ext4_ext_fiemap_cb
, fieinfo
);