1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Block/Cluster mapping functions
8 * Copyright (C) 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License, version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public
20 * License along with this program; if not, write to the
21 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 * Boston, MA 021110-1307, USA.
26 #include <linux/init.h>
27 #include <linux/slab.h>
28 #include <linux/types.h>
29 #include <linux/fiemap.h>
31 #include <cluster/masklog.h>
37 #include "extent_map.h"
41 #include "ocfs2_trace.h"
43 #include "buffer_head_io.h"
46 * The extent caching implementation is intentionally trivial.
48 * We only cache a small number of extents stored directly on the
49 * inode, so linear order operations are acceptable. If we ever want
50 * to increase the size of the extent map, then these algorithms must
54 void ocfs2_extent_map_init(struct inode
*inode
)
56 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
58 oi
->ip_extent_map
.em_num_items
= 0;
59 INIT_LIST_HEAD(&oi
->ip_extent_map
.em_list
);
62 static void __ocfs2_extent_map_lookup(struct ocfs2_extent_map
*em
,
64 struct ocfs2_extent_map_item
**ret_emi
)
67 struct ocfs2_extent_map_item
*emi
;
71 list_for_each_entry(emi
, &em
->em_list
, ei_list
) {
72 range
= emi
->ei_cpos
+ emi
->ei_clusters
;
74 if (cpos
>= emi
->ei_cpos
&& cpos
< range
) {
75 list_move(&emi
->ei_list
, &em
->em_list
);
83 static int ocfs2_extent_map_lookup(struct inode
*inode
, unsigned int cpos
,
84 unsigned int *phys
, unsigned int *len
,
88 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
89 struct ocfs2_extent_map_item
*emi
;
91 spin_lock(&oi
->ip_lock
);
93 __ocfs2_extent_map_lookup(&oi
->ip_extent_map
, cpos
, &emi
);
95 coff
= cpos
- emi
->ei_cpos
;
96 *phys
= emi
->ei_phys
+ coff
;
98 *len
= emi
->ei_clusters
- coff
;
100 *flags
= emi
->ei_flags
;
103 spin_unlock(&oi
->ip_lock
);
112 * Forget about all clusters equal to or greater than cpos.
114 void ocfs2_extent_map_trunc(struct inode
*inode
, unsigned int cpos
)
116 struct ocfs2_extent_map_item
*emi
, *n
;
117 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
118 struct ocfs2_extent_map
*em
= &oi
->ip_extent_map
;
122 spin_lock(&oi
->ip_lock
);
123 list_for_each_entry_safe(emi
, n
, &em
->em_list
, ei_list
) {
124 if (emi
->ei_cpos
>= cpos
) {
125 /* Full truncate of this record. */
126 list_move(&emi
->ei_list
, &tmp_list
);
127 BUG_ON(em
->em_num_items
== 0);
132 range
= emi
->ei_cpos
+ emi
->ei_clusters
;
134 /* Partial truncate */
135 emi
->ei_clusters
= cpos
- emi
->ei_cpos
;
138 spin_unlock(&oi
->ip_lock
);
140 list_for_each_entry_safe(emi
, n
, &tmp_list
, ei_list
) {
141 list_del(&emi
->ei_list
);
147 * Is any part of emi2 contained within emi1
149 static int ocfs2_ei_is_contained(struct ocfs2_extent_map_item
*emi1
,
150 struct ocfs2_extent_map_item
*emi2
)
152 unsigned int range1
, range2
;
155 * Check if logical start of emi2 is inside emi1
157 range1
= emi1
->ei_cpos
+ emi1
->ei_clusters
;
158 if (emi2
->ei_cpos
>= emi1
->ei_cpos
&& emi2
->ei_cpos
< range1
)
162 * Check if logical end of emi2 is inside emi1
164 range2
= emi2
->ei_cpos
+ emi2
->ei_clusters
;
165 if (range2
> emi1
->ei_cpos
&& range2
<= range1
)
171 static void ocfs2_copy_emi_fields(struct ocfs2_extent_map_item
*dest
,
172 struct ocfs2_extent_map_item
*src
)
174 dest
->ei_cpos
= src
->ei_cpos
;
175 dest
->ei_phys
= src
->ei_phys
;
176 dest
->ei_clusters
= src
->ei_clusters
;
177 dest
->ei_flags
= src
->ei_flags
;
181 * Try to merge emi with ins. Returns 1 if merge succeeds, zero
184 static int ocfs2_try_to_merge_extent_map(struct ocfs2_extent_map_item
*emi
,
185 struct ocfs2_extent_map_item
*ins
)
188 * Handle contiguousness
190 if (ins
->ei_phys
== (emi
->ei_phys
+ emi
->ei_clusters
) &&
191 ins
->ei_cpos
== (emi
->ei_cpos
+ emi
->ei_clusters
) &&
192 ins
->ei_flags
== emi
->ei_flags
) {
193 emi
->ei_clusters
+= ins
->ei_clusters
;
195 } else if ((ins
->ei_phys
+ ins
->ei_clusters
) == emi
->ei_phys
&&
196 (ins
->ei_cpos
+ ins
->ei_clusters
) == emi
->ei_cpos
&&
197 ins
->ei_flags
== emi
->ei_flags
) {
198 emi
->ei_phys
= ins
->ei_phys
;
199 emi
->ei_cpos
= ins
->ei_cpos
;
200 emi
->ei_clusters
+= ins
->ei_clusters
;
205 * Overlapping extents - this shouldn't happen unless we've
206 * split an extent to change it's flags. That is exceedingly
207 * rare, so there's no sense in trying to optimize it yet.
209 if (ocfs2_ei_is_contained(emi
, ins
) ||
210 ocfs2_ei_is_contained(ins
, emi
)) {
211 ocfs2_copy_emi_fields(emi
, ins
);
215 /* No merge was possible. */
220 * In order to reduce complexity on the caller, this insert function
221 * is intentionally liberal in what it will accept.
223 * The only rule is that the truncate call *must* be used whenever
224 * records have been deleted. This avoids inserting overlapping
225 * records with different physical mappings.
227 void ocfs2_extent_map_insert_rec(struct inode
*inode
,
228 struct ocfs2_extent_rec
*rec
)
230 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
231 struct ocfs2_extent_map
*em
= &oi
->ip_extent_map
;
232 struct ocfs2_extent_map_item
*emi
, *new_emi
= NULL
;
233 struct ocfs2_extent_map_item ins
;
235 ins
.ei_cpos
= le32_to_cpu(rec
->e_cpos
);
236 ins
.ei_phys
= ocfs2_blocks_to_clusters(inode
->i_sb
,
237 le64_to_cpu(rec
->e_blkno
));
238 ins
.ei_clusters
= le16_to_cpu(rec
->e_leaf_clusters
);
239 ins
.ei_flags
= rec
->e_flags
;
242 spin_lock(&oi
->ip_lock
);
244 list_for_each_entry(emi
, &em
->em_list
, ei_list
) {
245 if (ocfs2_try_to_merge_extent_map(emi
, &ins
)) {
246 list_move(&emi
->ei_list
, &em
->em_list
);
247 spin_unlock(&oi
->ip_lock
);
253 * No item could be merged.
255 * Either allocate and add a new item, or overwrite the last recently
259 if (em
->em_num_items
< OCFS2_MAX_EXTENT_MAP_ITEMS
) {
260 if (new_emi
== NULL
) {
261 spin_unlock(&oi
->ip_lock
);
263 new_emi
= kmalloc(sizeof(*new_emi
), GFP_NOFS
);
270 ocfs2_copy_emi_fields(new_emi
, &ins
);
271 list_add(&new_emi
->ei_list
, &em
->em_list
);
275 BUG_ON(list_empty(&em
->em_list
) || em
->em_num_items
== 0);
276 emi
= list_entry(em
->em_list
.prev
,
277 struct ocfs2_extent_map_item
, ei_list
);
278 list_move(&emi
->ei_list
, &em
->em_list
);
279 ocfs2_copy_emi_fields(emi
, &ins
);
282 spin_unlock(&oi
->ip_lock
);
289 static int ocfs2_last_eb_is_empty(struct inode
*inode
,
290 struct ocfs2_dinode
*di
)
293 u64 last_eb_blk
= le64_to_cpu(di
->i_last_eb_blk
);
294 struct buffer_head
*eb_bh
= NULL
;
295 struct ocfs2_extent_block
*eb
;
296 struct ocfs2_extent_list
*el
;
298 ret
= ocfs2_read_extent_block(INODE_CACHE(inode
), last_eb_blk
, &eb_bh
);
304 eb
= (struct ocfs2_extent_block
*) eb_bh
->b_data
;
307 if (el
->l_tree_depth
) {
308 ocfs2_error(inode
->i_sb
,
309 "Inode %lu has non zero tree depth in "
310 "leaf block %llu\n", inode
->i_ino
,
311 (unsigned long long)eb_bh
->b_blocknr
);
316 next_free
= le16_to_cpu(el
->l_next_free_rec
);
318 if (next_free
== 0 ||
319 (next_free
== 1 && ocfs2_is_empty_extent(&el
->l_recs
[0])))
328 * Return the 1st index within el which contains an extent start
329 * larger than v_cluster.
331 static int ocfs2_search_for_hole_index(struct ocfs2_extent_list
*el
,
335 struct ocfs2_extent_rec
*rec
;
337 for(i
= 0; i
< le16_to_cpu(el
->l_next_free_rec
); i
++) {
338 rec
= &el
->l_recs
[i
];
340 if (v_cluster
< le32_to_cpu(rec
->e_cpos
))
348 * Figure out the size of a hole which starts at v_cluster within the given
351 * If there is no more allocation past v_cluster, we return the maximum
352 * cluster size minus v_cluster.
354 * If we have in-inode extents, then el points to the dinode list and
355 * eb_bh is NULL. Otherwise, eb_bh should point to the extent block
358 int ocfs2_figure_hole_clusters(struct ocfs2_caching_info
*ci
,
359 struct ocfs2_extent_list
*el
,
360 struct buffer_head
*eb_bh
,
365 struct buffer_head
*next_eb_bh
= NULL
;
366 struct ocfs2_extent_block
*eb
, *next_eb
;
368 i
= ocfs2_search_for_hole_index(el
, v_cluster
);
370 if (i
== le16_to_cpu(el
->l_next_free_rec
) && eb_bh
) {
371 eb
= (struct ocfs2_extent_block
*)eb_bh
->b_data
;
374 * Check the next leaf for any extents.
377 if (le64_to_cpu(eb
->h_next_leaf_blk
) == 0ULL)
378 goto no_more_extents
;
380 ret
= ocfs2_read_extent_block(ci
,
381 le64_to_cpu(eb
->h_next_leaf_blk
),
388 next_eb
= (struct ocfs2_extent_block
*)next_eb_bh
->b_data
;
389 el
= &next_eb
->h_list
;
390 i
= ocfs2_search_for_hole_index(el
, v_cluster
);
394 if (i
== le16_to_cpu(el
->l_next_free_rec
)) {
396 * We're at the end of our existing allocation. Just
397 * return the maximum number of clusters we could
400 *num_clusters
= UINT_MAX
- v_cluster
;
402 *num_clusters
= le32_to_cpu(el
->l_recs
[i
].e_cpos
) - v_cluster
;
411 static int ocfs2_get_clusters_nocache(struct inode
*inode
,
412 struct buffer_head
*di_bh
,
413 u32 v_cluster
, unsigned int *hole_len
,
414 struct ocfs2_extent_rec
*ret_rec
,
415 unsigned int *is_last
)
417 int i
, ret
, tree_height
, len
;
418 struct ocfs2_dinode
*di
;
419 struct ocfs2_extent_block
*uninitialized_var(eb
);
420 struct ocfs2_extent_list
*el
;
421 struct ocfs2_extent_rec
*rec
;
422 struct buffer_head
*eb_bh
= NULL
;
424 memset(ret_rec
, 0, sizeof(*ret_rec
));
428 di
= (struct ocfs2_dinode
*) di_bh
->b_data
;
429 el
= &di
->id2
.i_list
;
430 tree_height
= le16_to_cpu(el
->l_tree_depth
);
432 if (tree_height
> 0) {
433 ret
= ocfs2_find_leaf(INODE_CACHE(inode
), el
, v_cluster
,
440 eb
= (struct ocfs2_extent_block
*) eb_bh
->b_data
;
443 if (el
->l_tree_depth
) {
444 ocfs2_error(inode
->i_sb
,
445 "Inode %lu has non zero tree depth in "
446 "leaf block %llu\n", inode
->i_ino
,
447 (unsigned long long)eb_bh
->b_blocknr
);
453 i
= ocfs2_search_extent_list(el
, v_cluster
);
456 * Holes can be larger than the maximum size of an
457 * extent, so we return their lengths in a separate
461 ret
= ocfs2_figure_hole_clusters(INODE_CACHE(inode
),
474 rec
= &el
->l_recs
[i
];
476 BUG_ON(v_cluster
< le32_to_cpu(rec
->e_cpos
));
479 ocfs2_error(inode
->i_sb
, "Inode %lu has bad extent "
480 "record (%u, %u, 0)", inode
->i_ino
,
481 le32_to_cpu(rec
->e_cpos
),
482 ocfs2_rec_clusters(el
, rec
));
490 * Checking for last extent is potentially expensive - we
491 * might have to look at the next leaf over to see if it's
494 * The first two checks are to see whether the caller even
495 * cares for this information, and if the extent is at least
496 * the last in it's list.
498 * If those hold true, then the extent is last if any of the
499 * additional conditions hold true:
500 * - Extent list is in-inode
501 * - Extent list is right-most
502 * - Extent list is 2nd to rightmost, with empty right-most
505 if (i
== (le16_to_cpu(el
->l_next_free_rec
) - 1)) {
506 if (tree_height
== 0)
508 else if (eb
->h_blkno
== di
->i_last_eb_blk
)
510 else if (eb
->h_next_leaf_blk
== di
->i_last_eb_blk
) {
511 ret
= ocfs2_last_eb_is_empty(inode
, di
);
529 static void ocfs2_relative_extent_offsets(struct super_block
*sb
,
531 struct ocfs2_extent_rec
*rec
,
532 u32
*p_cluster
, u32
*num_clusters
)
535 u32 coff
= v_cluster
- le32_to_cpu(rec
->e_cpos
);
537 *p_cluster
= ocfs2_blocks_to_clusters(sb
, le64_to_cpu(rec
->e_blkno
));
538 *p_cluster
= *p_cluster
+ coff
;
541 *num_clusters
= le16_to_cpu(rec
->e_leaf_clusters
) - coff
;
544 int ocfs2_xattr_get_clusters(struct inode
*inode
, u32 v_cluster
,
545 u32
*p_cluster
, u32
*num_clusters
,
546 struct ocfs2_extent_list
*el
,
547 unsigned int *extent_flags
)
550 struct buffer_head
*eb_bh
= NULL
;
551 struct ocfs2_extent_block
*eb
;
552 struct ocfs2_extent_rec
*rec
;
555 if (el
->l_tree_depth
) {
556 ret
= ocfs2_find_leaf(INODE_CACHE(inode
), el
, v_cluster
,
563 eb
= (struct ocfs2_extent_block
*) eb_bh
->b_data
;
566 if (el
->l_tree_depth
) {
567 ocfs2_error(inode
->i_sb
,
568 "Inode %lu has non zero tree depth in "
569 "xattr leaf block %llu\n", inode
->i_ino
,
570 (unsigned long long)eb_bh
->b_blocknr
);
576 i
= ocfs2_search_extent_list(el
, v_cluster
);
582 rec
= &el
->l_recs
[i
];
583 BUG_ON(v_cluster
< le32_to_cpu(rec
->e_cpos
));
586 ocfs2_error(inode
->i_sb
, "Inode %lu has bad extent "
587 "record (%u, %u, 0) in xattr", inode
->i_ino
,
588 le32_to_cpu(rec
->e_cpos
),
589 ocfs2_rec_clusters(el
, rec
));
593 coff
= v_cluster
- le32_to_cpu(rec
->e_cpos
);
594 *p_cluster
= ocfs2_blocks_to_clusters(inode
->i_sb
,
595 le64_to_cpu(rec
->e_blkno
));
596 *p_cluster
= *p_cluster
+ coff
;
598 *num_clusters
= ocfs2_rec_clusters(el
, rec
) - coff
;
601 *extent_flags
= rec
->e_flags
;
609 int ocfs2_get_clusters(struct inode
*inode
, u32 v_cluster
,
610 u32
*p_cluster
, u32
*num_clusters
,
611 unsigned int *extent_flags
)
614 unsigned int uninitialized_var(hole_len
), flags
= 0;
615 struct buffer_head
*di_bh
= NULL
;
616 struct ocfs2_extent_rec rec
;
618 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
624 ret
= ocfs2_extent_map_lookup(inode
, v_cluster
, p_cluster
,
625 num_clusters
, extent_flags
);
629 ret
= ocfs2_read_inode_block(inode
, &di_bh
);
635 ret
= ocfs2_get_clusters_nocache(inode
, di_bh
, v_cluster
, &hole_len
,
642 if (rec
.e_blkno
== 0ULL) {
644 * A hole was found. Return some canned values that
645 * callers can key on. If asked for, num_clusters will
646 * be populated with the size of the hole.
650 *num_clusters
= hole_len
;
653 ocfs2_relative_extent_offsets(inode
->i_sb
, v_cluster
, &rec
,
654 p_cluster
, num_clusters
);
657 ocfs2_extent_map_insert_rec(inode
, &rec
);
661 *extent_flags
= flags
;
669 * This expects alloc_sem to be held. The allocation cannot change at
670 * all while the map is in the process of being updated.
672 int ocfs2_extent_map_get_blocks(struct inode
*inode
, u64 v_blkno
, u64
*p_blkno
,
673 u64
*ret_count
, unsigned int *extent_flags
)
676 int bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
677 u32 cpos
, num_clusters
, p_cluster
;
680 cpos
= ocfs2_blocks_to_clusters(inode
->i_sb
, v_blkno
);
682 ret
= ocfs2_get_clusters(inode
, cpos
, &p_cluster
, &num_clusters
,
690 * p_cluster == 0 indicates a hole.
693 boff
= ocfs2_clusters_to_blocks(inode
->i_sb
, p_cluster
);
694 boff
+= (v_blkno
& (u64
)(bpc
- 1));
700 *ret_count
= ocfs2_clusters_to_blocks(inode
->i_sb
, num_clusters
);
701 *ret_count
-= v_blkno
& (u64
)(bpc
- 1);
709 * The ocfs2_fiemap_inline() may be a little bit misleading, since
710 * it not only handles the fiemap for inlined files, but also deals
711 * with the fast symlink, cause they have no difference for extent
714 static int ocfs2_fiemap_inline(struct inode
*inode
, struct buffer_head
*di_bh
,
715 struct fiemap_extent_info
*fieinfo
,
719 unsigned int id_count
;
720 struct ocfs2_dinode
*di
;
722 u32 flags
= FIEMAP_EXTENT_DATA_INLINE
|FIEMAP_EXTENT_LAST
;
723 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
725 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
726 if (ocfs2_inode_is_fast_symlink(inode
))
727 id_count
= ocfs2_fast_symlink_chars(inode
->i_sb
);
729 id_count
= le16_to_cpu(di
->id2
.i_data
.id_count
);
731 if (map_start
< id_count
) {
732 phys
= oi
->ip_blkno
<< inode
->i_sb
->s_blocksize_bits
;
733 if (ocfs2_inode_is_fast_symlink(inode
))
734 phys
+= offsetof(struct ocfs2_dinode
, id2
.i_symlink
);
736 phys
+= offsetof(struct ocfs2_dinode
,
739 ret
= fiemap_fill_next_extent(fieinfo
, 0, phys
, id_count
,
748 #define OCFS2_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
750 int ocfs2_fiemap(struct inode
*inode
, struct fiemap_extent_info
*fieinfo
,
751 u64 map_start
, u64 map_len
)
754 u32 mapping_end
, cpos
;
755 unsigned int hole_size
;
756 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
757 u64 len_bytes
, phys_bytes
, virt_bytes
;
758 struct buffer_head
*di_bh
= NULL
;
759 struct ocfs2_extent_rec rec
;
761 ret
= fiemap_check_flags(fieinfo
, OCFS2_FIEMAP_FLAGS
);
765 ret
= ocfs2_inode_lock(inode
, &di_bh
, 0);
771 down_read(&OCFS2_I(inode
)->ip_alloc_sem
);
774 * Handle inline-data and fast symlink separately.
776 if ((OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) ||
777 ocfs2_inode_is_fast_symlink(inode
)) {
778 ret
= ocfs2_fiemap_inline(inode
, di_bh
, fieinfo
, map_start
);
782 cpos
= map_start
>> osb
->s_clustersize_bits
;
783 mapping_end
= ocfs2_clusters_for_bytes(inode
->i_sb
,
784 map_start
+ map_len
);
787 while (cpos
< mapping_end
&& !is_last
) {
790 ret
= ocfs2_get_clusters_nocache(inode
, di_bh
, cpos
,
791 &hole_size
, &rec
, &is_last
);
797 if (rec
.e_blkno
== 0ULL) {
803 if (rec
.e_flags
& OCFS2_EXT_UNWRITTEN
)
804 fe_flags
|= FIEMAP_EXTENT_UNWRITTEN
;
805 if (rec
.e_flags
& OCFS2_EXT_REFCOUNTED
)
806 fe_flags
|= FIEMAP_EXTENT_SHARED
;
808 fe_flags
|= FIEMAP_EXTENT_LAST
;
809 len_bytes
= (u64
)le16_to_cpu(rec
.e_leaf_clusters
) << osb
->s_clustersize_bits
;
810 phys_bytes
= le64_to_cpu(rec
.e_blkno
) << osb
->sb
->s_blocksize_bits
;
811 virt_bytes
= (u64
)le32_to_cpu(rec
.e_cpos
) << osb
->s_clustersize_bits
;
813 ret
= fiemap_fill_next_extent(fieinfo
, virt_bytes
, phys_bytes
,
814 len_bytes
, fe_flags
);
818 cpos
= le32_to_cpu(rec
.e_cpos
)+ le16_to_cpu(rec
.e_leaf_clusters
);
827 up_read(&OCFS2_I(inode
)->ip_alloc_sem
);
829 ocfs2_inode_unlock(inode
, 0);
835 int ocfs2_seek_data_hole_offset(struct file
*file
, loff_t
*offset
, int origin
)
837 struct inode
*inode
= file
->f_mapping
->host
;
839 unsigned int is_last
= 0, is_data
= 0;
840 u16 cs_bits
= OCFS2_SB(inode
->i_sb
)->s_clustersize_bits
;
841 u32 cpos
, cend
, clen
, hole_size
;
843 struct buffer_head
*di_bh
= NULL
;
844 struct ocfs2_extent_rec rec
;
846 BUG_ON(origin
!= SEEK_DATA
&& origin
!= SEEK_HOLE
);
848 ret
= ocfs2_inode_lock(inode
, &di_bh
, 0);
854 down_read(&OCFS2_I(inode
)->ip_alloc_sem
);
856 if (*offset
>= inode
->i_size
) {
861 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
862 if (origin
== SEEK_HOLE
)
863 *offset
= inode
->i_size
;
868 cpos
= *offset
>> cs_bits
;
869 cend
= ocfs2_clusters_for_bytes(inode
->i_sb
, inode
->i_size
);
871 while (cpos
< cend
&& !is_last
) {
872 ret
= ocfs2_get_clusters_nocache(inode
, di_bh
, cpos
, &hole_size
,
882 if (rec
.e_blkno
== 0ULL) {
886 clen
= le16_to_cpu(rec
.e_leaf_clusters
) -
887 (cpos
- le32_to_cpu(rec
.e_cpos
));
888 is_data
= (rec
.e_flags
& OCFS2_EXT_UNWRITTEN
) ? 0 : 1;
891 if ((!is_data
&& origin
== SEEK_HOLE
) ||
892 (is_data
&& origin
== SEEK_DATA
)) {
893 if (extoff
> *offset
)
902 if (origin
== SEEK_HOLE
) {
908 if ((extoff
+ extlen
) > inode
->i_size
)
909 extlen
= inode
->i_size
- extoff
;
911 if (extoff
> *offset
)
922 up_read(&OCFS2_I(inode
)->ip_alloc_sem
);
924 ocfs2_inode_unlock(inode
, 0);
929 int ocfs2_read_virt_blocks(struct inode
*inode
, u64 v_block
, int nr
,
930 struct buffer_head
*bhs
[], int flags
,
931 int (*validate
)(struct super_block
*sb
,
932 struct buffer_head
*bh
))
935 u64 p_block
, p_count
;
936 int i
, count
, done
= 0;
938 trace_ocfs2_read_virt_blocks(
939 inode
, (unsigned long long)v_block
, nr
, bhs
, flags
,
942 if (((v_block
+ nr
- 1) << inode
->i_sb
->s_blocksize_bits
) >=
943 i_size_read(inode
)) {
944 BUG_ON(!(flags
& OCFS2_BH_READAHEAD
));
949 down_read(&OCFS2_I(inode
)->ip_alloc_sem
);
950 rc
= ocfs2_extent_map_get_blocks(inode
, v_block
+ done
,
951 &p_block
, &p_count
, NULL
);
952 up_read(&OCFS2_I(inode
)->ip_alloc_sem
);
961 "Inode #%llu contains a hole at offset %llu\n",
962 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
963 (unsigned long long)(v_block
+ done
) <<
964 inode
->i_sb
->s_blocksize_bits
);
973 * If the caller passed us bhs, they should have come
974 * from a previous readahead call to this function. Thus,
975 * they should have the right b_blocknr.
977 for (i
= 0; i
< count
; i
++) {
980 BUG_ON(bhs
[done
+ i
]->b_blocknr
!= (p_block
+ i
));
983 rc
= ocfs2_read_blocks(INODE_CACHE(inode
), p_block
, count
,
984 bhs
+ done
, flags
, validate
);