1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2011 Oracle. All rights reserved.
8 #include <linux/types.h>
9 #include <linux/mount.h>
10 #include <linux/swap.h>
12 #include <cluster/masklog.h>
15 #include "ocfs2_ioctl.h"
18 #include "localalloc.h"
21 #include "extent_map.h"
28 #include "buffer_head_io.h"
30 #include "refcounttree.h"
31 #include "move_extents.h"
33 struct ocfs2_move_extents_context
{
42 struct ocfs2_move_extents
*range
;
43 struct ocfs2_extent_tree et
;
44 struct ocfs2_alloc_context
*meta_ac
;
45 struct ocfs2_alloc_context
*data_ac
;
46 struct ocfs2_cached_dealloc_ctxt dealloc
;
49 static int __ocfs2_move_extent(handle_t
*handle
,
50 struct ocfs2_move_extents_context
*context
,
51 u32 cpos
, u32 len
, u32 p_cpos
, u32 new_p_cpos
,
55 struct inode
*inode
= context
->inode
;
56 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
57 struct ocfs2_extent_rec
*rec
, replace_rec
;
58 struct ocfs2_path
*path
= NULL
;
59 struct ocfs2_extent_list
*el
;
60 u64 ino
= ocfs2_metadata_cache_owner(context
->et
.et_ci
);
61 u64 old_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, p_cpos
);
63 ret
= ocfs2_duplicate_clusters_by_page(handle
, inode
, cpos
,
64 p_cpos
, new_p_cpos
, len
);
70 memset(&replace_rec
, 0, sizeof(replace_rec
));
71 replace_rec
.e_cpos
= cpu_to_le32(cpos
);
72 replace_rec
.e_leaf_clusters
= cpu_to_le16(len
);
73 replace_rec
.e_blkno
= cpu_to_le64(ocfs2_clusters_to_blocks(inode
->i_sb
,
76 path
= ocfs2_new_path_from_et(&context
->et
);
83 ret
= ocfs2_find_path(INODE_CACHE(inode
), path
, cpos
);
89 el
= path_leaf_el(path
);
91 index
= ocfs2_search_extent_list(el
, cpos
);
93 ret
= ocfs2_error(inode
->i_sb
,
94 "Inode %llu has an extent at cpos %u which can no longer be found\n",
95 (unsigned long long)ino
, cpos
);
99 rec
= &el
->l_recs
[index
];
101 BUG_ON(ext_flags
!= rec
->e_flags
);
103 * after moving/defraging to new location, the extent is not going
104 * to be refcounted anymore.
106 replace_rec
.e_flags
= ext_flags
& ~OCFS2_EXT_REFCOUNTED
;
108 ret
= ocfs2_split_extent(handle
, &context
->et
, path
, index
,
109 &replace_rec
, context
->meta_ac
,
116 context
->new_phys_cpos
= new_p_cpos
;
119 * need I to append truncate log for old clusters?
122 if (ext_flags
& OCFS2_EXT_REFCOUNTED
)
123 ret
= ocfs2_decrease_refcount(inode
, handle
,
124 ocfs2_blocks_to_clusters(osb
->sb
,
126 len
, context
->meta_ac
,
127 &context
->dealloc
, 1);
129 ret
= ocfs2_truncate_log_append(osb
, handle
,
133 ocfs2_update_inode_fsync_trans(handle
, inode
, 0);
135 ocfs2_free_path(path
);
140 * lock allocator, and reserve appropriate number of bits for
143 static int ocfs2_lock_meta_allocator_move_extents(struct inode
*inode
,
144 struct ocfs2_extent_tree
*et
,
145 u32 clusters_to_move
,
146 u32 extents_to_split
,
147 struct ocfs2_alloc_context
**meta_ac
,
151 int ret
, num_free_extents
;
152 unsigned int max_recs_needed
= 2 * extents_to_split
+ clusters_to_move
;
153 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
155 num_free_extents
= ocfs2_num_free_extents(et
);
156 if (num_free_extents
< 0) {
157 ret
= num_free_extents
;
162 if (!num_free_extents
||
163 (ocfs2_sparse_alloc(osb
) && num_free_extents
< max_recs_needed
))
164 extra_blocks
+= ocfs2_extend_meta_needed(et
->et_root_el
);
166 ret
= ocfs2_reserve_new_metadata_blocks(osb
, extra_blocks
, meta_ac
);
173 *credits
+= ocfs2_calc_extend_credits(osb
->sb
, et
->et_root_el
);
175 mlog(0, "reserve metadata_blocks: %d, data_clusters: %u, credits: %d\n",
176 extra_blocks
, clusters_to_move
, *credits
);
180 ocfs2_free_alloc_context(*meta_ac
);
189 * Using one journal handle to guarantee the data consistency in case
190 * crash happens anywhere.
192 * XXX: defrag can end up with finishing partial extent as requested,
193 * due to not enough contiguous clusters can be found in allocator.
195 static int ocfs2_defrag_extent(struct ocfs2_move_extents_context
*context
,
196 u32 cpos
, u32 phys_cpos
, u32
*len
, int ext_flags
)
198 int ret
, credits
= 0, extra_blocks
= 0, partial
= context
->partial
;
200 struct inode
*inode
= context
->inode
;
201 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
202 struct inode
*tl_inode
= osb
->osb_tl_inode
;
203 struct ocfs2_refcount_tree
*ref_tree
= NULL
;
204 u32 new_phys_cpos
, new_len
;
205 u64 phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
208 if ((ext_flags
& OCFS2_EXT_REFCOUNTED
) && *len
) {
209 BUG_ON(!ocfs2_is_refcount_inode(inode
));
210 BUG_ON(!context
->refcount_loc
);
212 ret
= ocfs2_lock_refcount_tree(osb
, context
->refcount_loc
, 1,
219 ret
= ocfs2_prepare_refcount_change_for_del(inode
,
220 context
->refcount_loc
,
231 ret
= ocfs2_lock_meta_allocator_move_extents(inode
, &context
->et
,
234 extra_blocks
, &credits
);
241 * should be using allocation reservation strategy there?
243 * if (context->data_ac)
244 * context->data_ac->ac_resv = &OCFS2_I(inode)->ip_la_data_resv;
247 inode_lock(tl_inode
);
249 if (ocfs2_truncate_log_needs_flush(osb
)) {
250 ret
= __ocfs2_flush_truncate_log(osb
);
253 goto out_unlock_mutex
;
258 * Make sure ocfs2_reserve_cluster is called after
259 * __ocfs2_flush_truncate_log, otherwise, dead lock may happen.
261 * If ocfs2_reserve_cluster is called
262 * before __ocfs2_flush_truncate_log, dead lock on global bitmap
266 ret
= ocfs2_reserve_clusters(osb
, *len
, &context
->data_ac
);
269 goto out_unlock_mutex
;
272 handle
= ocfs2_start_trans(osb
, credits
);
273 if (IS_ERR(handle
)) {
274 ret
= PTR_ERR(handle
);
276 goto out_unlock_mutex
;
279 ret
= __ocfs2_claim_clusters(handle
, context
->data_ac
, 1, *len
,
280 &new_phys_cpos
, &new_len
);
287 * allowing partial extent moving is kind of 'pros and cons', it makes
288 * whole defragmentation less likely to fail, on the contrary, the bad
289 * thing is it may make the fs even more fragmented after moving, let
290 * userspace make a good decision here.
292 if (new_len
!= *len
) {
293 mlog(0, "len_claimed: %u, len: %u\n", new_len
, *len
);
295 context
->range
->me_flags
&= ~OCFS2_MOVE_EXT_FL_COMPLETE
;
302 mlog(0, "cpos: %u, phys_cpos: %u, new_phys_cpos: %u\n", cpos
,
303 phys_cpos
, new_phys_cpos
);
305 ret
= __ocfs2_move_extent(handle
, context
, cpos
, new_len
, phys_cpos
,
306 new_phys_cpos
, ext_flags
);
310 if (partial
&& (new_len
!= *len
))
314 * Here we should write the new page out first if we are
315 * in write-back mode.
317 ret
= ocfs2_cow_sync_writeback(inode
->i_sb
, context
->inode
, cpos
, *len
);
322 if (need_free
&& context
->data_ac
) {
323 struct ocfs2_alloc_context
*data_ac
= context
->data_ac
;
325 if (context
->data_ac
->ac_which
== OCFS2_AC_USE_LOCAL
)
326 ocfs2_free_local_alloc_bits(osb
, handle
, data_ac
,
327 new_phys_cpos
, new_len
);
329 ocfs2_free_clusters(handle
,
332 ocfs2_clusters_to_blocks(osb
->sb
, new_phys_cpos
),
336 ocfs2_commit_trans(osb
, handle
);
339 inode_unlock(tl_inode
);
341 if (context
->data_ac
) {
342 ocfs2_free_alloc_context(context
->data_ac
);
343 context
->data_ac
= NULL
;
346 if (context
->meta_ac
) {
347 ocfs2_free_alloc_context(context
->meta_ac
);
348 context
->meta_ac
= NULL
;
353 ocfs2_unlock_refcount_tree(osb
, ref_tree
, 1);
359 * find the victim alloc group, where #blkno fits.
361 static int ocfs2_find_victim_alloc_group(struct inode
*inode
,
365 struct buffer_head
**ret_bh
)
367 int ret
, i
, bits_per_unit
= 0;
371 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
372 struct buffer_head
*ac_bh
= NULL
, *gd_bh
= NULL
;
373 struct ocfs2_chain_list
*cl
;
374 struct ocfs2_chain_rec
*rec
;
375 struct ocfs2_dinode
*ac_dinode
;
376 struct ocfs2_group_desc
*bg
;
378 ocfs2_sprintf_system_inode_name(namebuf
, sizeof(namebuf
), type
, slot
);
379 ret
= ocfs2_lookup_ino_from_name(osb
->sys_root_inode
, namebuf
,
380 strlen(namebuf
), &blkno
);
386 ret
= ocfs2_read_blocks_sync(osb
, blkno
, 1, &ac_bh
);
392 ac_dinode
= (struct ocfs2_dinode
*)ac_bh
->b_data
;
393 cl
= &(ac_dinode
->id2
.i_chain
);
394 rec
= &(cl
->cl_recs
[0]);
396 if (type
== GLOBAL_BITMAP_SYSTEM_INODE
)
397 bits_per_unit
= osb
->s_clustersize_bits
-
398 inode
->i_sb
->s_blocksize_bits
;
400 * 'vict_blkno' was out of the valid range.
402 if ((vict_blkno
< le64_to_cpu(rec
->c_blkno
)) ||
403 (vict_blkno
>= ((u64
)le32_to_cpu(ac_dinode
->id1
.bitmap1
.i_total
) <<
409 for (i
= 0; i
< le16_to_cpu(cl
->cl_next_free_rec
); i
++) {
411 rec
= &(cl
->cl_recs
[i
]);
419 blkno
= le64_to_cpu(rec
->c_blkno
);
421 blkno
= le64_to_cpu(bg
->bg_next_group
);
428 ret
= ocfs2_read_blocks_sync(osb
, blkno
, 1, &gd_bh
);
434 bg
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
436 if (vict_blkno
< (le64_to_cpu(bg
->bg_blkno
) +
437 (le16_to_cpu(bg
->bg_bits
) << bits_per_unit
))) {
440 *vict_bit
= (vict_blkno
- blkno
) >>
442 mlog(0, "find the victim group: #%llu, "
443 "total_bits: %u, vict_bit: %u\n",
444 blkno
, le16_to_cpu(bg
->bg_bits
),
449 } while (le64_to_cpu(bg
->bg_next_group
));
457 * caller has to release the gd_bh properly.
463 * XXX: helper to validate and adjust moving goal.
465 static int ocfs2_validate_and_adjust_move_goal(struct inode
*inode
,
466 struct ocfs2_move_extents
*range
)
468 int ret
, goal_bit
= 0;
470 struct buffer_head
*gd_bh
= NULL
;
471 struct ocfs2_group_desc
*bg
;
472 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
473 int c_to_b
= 1 << (osb
->s_clustersize_bits
-
474 inode
->i_sb
->s_blocksize_bits
);
477 * make goal become cluster aligned.
479 range
->me_goal
= ocfs2_block_to_cluster_start(inode
->i_sb
,
482 * validate goal sits within global_bitmap, and return the victim
485 ret
= ocfs2_find_victim_alloc_group(inode
, range
->me_goal
,
486 GLOBAL_BITMAP_SYSTEM_INODE
,
492 bg
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
495 * moving goal is not allowd to start with a group desc blok(#0 blk)
496 * let's compromise to the latter cluster.
498 if (range
->me_goal
== le64_to_cpu(bg
->bg_blkno
))
499 range
->me_goal
+= c_to_b
;
502 * movement is not gonna cross two groups.
504 if ((le16_to_cpu(bg
->bg_bits
) - goal_bit
) * osb
->s_clustersize
<
510 * more exact validations/adjustments will be performed later during
511 * moving operation for each extent range.
513 mlog(0, "extents get ready to be moved to #%llu block\n",
522 static void ocfs2_probe_alloc_group(struct inode
*inode
, struct buffer_head
*bh
,
523 int *goal_bit
, u32 move_len
, u32 max_hop
,
526 int i
, used
, last_free_bits
= 0, base_bit
= *goal_bit
;
527 struct ocfs2_group_desc
*gd
= (struct ocfs2_group_desc
*)bh
->b_data
;
528 u32 base_cpos
= ocfs2_blocks_to_clusters(inode
->i_sb
,
529 le64_to_cpu(gd
->bg_blkno
));
531 for (i
= base_bit
; i
< le16_to_cpu(gd
->bg_bits
); i
++) {
533 used
= ocfs2_test_bit(i
, (unsigned long *)gd
->bg_bitmap
);
536 * we even tried searching the free chunk by jumping
537 * a 'max_hop' distance, but still failed.
539 if ((i
- base_bit
) > max_hop
) {
551 if (last_free_bits
== move_len
) {
554 *phys_cpos
= base_cpos
+ i
;
559 mlog(0, "found phys_cpos: %u to fit the wanted moving.\n", *phys_cpos
);
562 static int ocfs2_move_extent(struct ocfs2_move_extents_context
*context
,
563 u32 cpos
, u32 phys_cpos
, u32
*new_phys_cpos
,
564 u32 len
, int ext_flags
)
566 int ret
, credits
= 0, extra_blocks
= 0, goal_bit
= 0;
568 struct inode
*inode
= context
->inode
;
569 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
570 struct inode
*tl_inode
= osb
->osb_tl_inode
;
571 struct inode
*gb_inode
= NULL
;
572 struct buffer_head
*gb_bh
= NULL
;
573 struct buffer_head
*gd_bh
= NULL
;
574 struct ocfs2_group_desc
*gd
;
575 struct ocfs2_refcount_tree
*ref_tree
= NULL
;
576 u32 move_max_hop
= ocfs2_blocks_to_clusters(inode
->i_sb
,
577 context
->range
->me_threshold
);
578 u64 phys_blkno
, new_phys_blkno
;
580 phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
582 if ((ext_flags
& OCFS2_EXT_REFCOUNTED
) && len
) {
583 BUG_ON(!ocfs2_is_refcount_inode(inode
));
584 BUG_ON(!context
->refcount_loc
);
586 ret
= ocfs2_lock_refcount_tree(osb
, context
->refcount_loc
, 1,
593 ret
= ocfs2_prepare_refcount_change_for_del(inode
,
594 context
->refcount_loc
,
605 ret
= ocfs2_lock_meta_allocator_move_extents(inode
, &context
->et
,
608 extra_blocks
, &credits
);
615 * need to count 2 extra credits for global_bitmap inode and
618 credits
+= OCFS2_INODE_UPDATE_CREDITS
+ 1;
621 * ocfs2_move_extent() didn't reserve any clusters in lock_allocators()
622 * logic, while we still need to lock the global_bitmap.
624 gb_inode
= ocfs2_get_system_file_inode(osb
, GLOBAL_BITMAP_SYSTEM_INODE
,
627 mlog(ML_ERROR
, "unable to get global_bitmap inode\n");
632 inode_lock(gb_inode
);
634 ret
= ocfs2_inode_lock(gb_inode
, &gb_bh
, 1);
637 goto out_unlock_gb_mutex
;
640 inode_lock(tl_inode
);
642 handle
= ocfs2_start_trans(osb
, credits
);
643 if (IS_ERR(handle
)) {
644 ret
= PTR_ERR(handle
);
646 goto out_unlock_tl_inode
;
649 new_phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, *new_phys_cpos
);
650 ret
= ocfs2_find_victim_alloc_group(inode
, new_phys_blkno
,
651 GLOBAL_BITMAP_SYSTEM_INODE
,
660 * probe the victim cluster group to find a proper
661 * region to fit wanted movement, it even will perfrom
662 * a best-effort attempt by compromising to a threshold
665 ocfs2_probe_alloc_group(inode
, gd_bh
, &goal_bit
, len
, move_max_hop
,
667 if (!*new_phys_cpos
) {
672 ret
= __ocfs2_move_extent(handle
, context
, cpos
, len
, phys_cpos
,
673 *new_phys_cpos
, ext_flags
);
679 gd
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
680 ret
= ocfs2_alloc_dinode_update_counts(gb_inode
, handle
, gb_bh
, len
,
681 le16_to_cpu(gd
->bg_chain
));
687 ret
= ocfs2_block_group_set_bits(handle
, gb_inode
, gd
, gd_bh
,
688 goal_bit
, len
, 0, 0);
690 ocfs2_rollback_alloc_dinode_counts(gb_inode
, gb_bh
, len
,
691 le16_to_cpu(gd
->bg_chain
));
696 * Here we should write the new page out first if we are
697 * in write-back mode.
699 ret
= ocfs2_cow_sync_writeback(inode
->i_sb
, context
->inode
, cpos
, len
);
704 ocfs2_commit_trans(osb
, handle
);
708 inode_unlock(tl_inode
);
710 ocfs2_inode_unlock(gb_inode
, 1);
712 inode_unlock(gb_inode
);
717 if (context
->meta_ac
) {
718 ocfs2_free_alloc_context(context
->meta_ac
);
719 context
->meta_ac
= NULL
;
723 ocfs2_unlock_refcount_tree(osb
, ref_tree
, 1);
729 * Helper to calculate the defraging length in one run according to threshold.
731 static void ocfs2_calc_extent_defrag_len(u32
*alloc_size
, u32
*len_defraged
,
732 u32 threshold
, int *skip
)
734 if ((*alloc_size
+ *len_defraged
) < threshold
) {
736 * proceed defragmentation until we meet the thresh
738 *len_defraged
+= *alloc_size
;
739 } else if (*len_defraged
== 0) {
741 * XXX: skip a large extent.
746 * split this extent to coalesce with former pieces as
747 * to reach the threshold.
749 * we're done here with one cycle of defragmentation
750 * in a size of 'thresh', resetting 'len_defraged'
751 * forces a new defragmentation.
753 *alloc_size
= threshold
- *len_defraged
;
758 static int __ocfs2_move_extents_range(struct buffer_head
*di_bh
,
759 struct ocfs2_move_extents_context
*context
)
761 int ret
= 0, flags
, do_defrag
, skip
= 0;
762 u32 cpos
, phys_cpos
, move_start
, len_to_move
, alloc_size
;
763 u32 len_defraged
= 0, defrag_thresh
= 0, new_phys_cpos
= 0;
765 struct inode
*inode
= context
->inode
;
766 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
767 struct ocfs2_move_extents
*range
= context
->range
;
768 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
770 if ((i_size_read(inode
) == 0) || (range
->me_len
== 0))
773 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
776 context
->refcount_loc
= le64_to_cpu(di
->i_refcount_loc
);
778 ocfs2_init_dinode_extent_tree(&context
->et
, INODE_CACHE(inode
), di_bh
);
779 ocfs2_init_dealloc_ctxt(&context
->dealloc
);
787 do_defrag
= context
->auto_defrag
;
790 * extents moving happens in unit of clusters, for the sake
791 * of simplicity, we may ignore two clusters where 'byte_start'
792 * and 'byte_start + len' were within.
794 move_start
= ocfs2_clusters_for_bytes(osb
->sb
, range
->me_start
);
795 len_to_move
= (range
->me_start
+ range
->me_len
) >>
796 osb
->s_clustersize_bits
;
797 if (len_to_move
>= move_start
)
798 len_to_move
-= move_start
;
803 defrag_thresh
= range
->me_threshold
>> osb
->s_clustersize_bits
;
804 if (defrag_thresh
<= 1)
807 new_phys_cpos
= ocfs2_blocks_to_clusters(inode
->i_sb
,
810 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u, "
812 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
813 (unsigned long long)range
->me_start
,
814 (unsigned long long)range
->me_len
,
815 move_start
, len_to_move
, defrag_thresh
);
818 while (len_to_move
) {
819 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
, &alloc_size
,
826 if (alloc_size
> len_to_move
)
827 alloc_size
= len_to_move
;
830 * XXX: how to deal with a hole:
832 * - skip the hole of course
833 * - force a new defragmentation
843 ocfs2_calc_extent_defrag_len(&alloc_size
, &len_defraged
,
844 defrag_thresh
, &skip
);
853 mlog(0, "#Defrag: cpos: %u, phys_cpos: %u, "
854 "alloc_size: %u, len_defraged: %u\n",
855 cpos
, phys_cpos
, alloc_size
, len_defraged
);
857 ret
= ocfs2_defrag_extent(context
, cpos
, phys_cpos
,
860 ret
= ocfs2_move_extent(context
, cpos
, phys_cpos
,
861 &new_phys_cpos
, alloc_size
,
864 new_phys_cpos
+= alloc_size
;
872 context
->clusters_moved
+= alloc_size
;
875 len_to_move
-= alloc_size
;
879 range
->me_flags
|= OCFS2_MOVE_EXT_FL_COMPLETE
;
882 range
->me_moved_len
= ocfs2_clusters_to_bytes(osb
->sb
,
883 context
->clusters_moved
);
884 range
->me_new_offset
= ocfs2_clusters_to_bytes(osb
->sb
,
885 context
->new_phys_cpos
);
887 ocfs2_schedule_truncate_log_flush(osb
, 1);
888 ocfs2_run_deallocs(osb
, &context
->dealloc
);
893 static int ocfs2_move_extents(struct ocfs2_move_extents_context
*context
)
897 struct inode
*inode
= context
->inode
;
898 struct ocfs2_dinode
*di
;
899 struct buffer_head
*di_bh
= NULL
;
900 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
902 if (ocfs2_is_hard_readonly(osb
) || ocfs2_is_soft_readonly(osb
))
908 * This prevents concurrent writes from other nodes
910 status
= ocfs2_rw_lock(inode
, 1);
916 status
= ocfs2_inode_lock(inode
, &di_bh
, 1);
923 * rememer ip_xattr_sem also needs to be held if necessary
925 down_write(&OCFS2_I(inode
)->ip_alloc_sem
);
927 status
= __ocfs2_move_extents_range(di_bh
, context
);
929 up_write(&OCFS2_I(inode
)->ip_alloc_sem
);
932 goto out_inode_unlock
;
936 * We update ctime for these changes
938 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
939 if (IS_ERR(handle
)) {
940 status
= PTR_ERR(handle
);
942 goto out_inode_unlock
;
945 status
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), di_bh
,
946 OCFS2_JOURNAL_ACCESS_WRITE
);
952 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
953 inode_set_ctime_current(inode
);
954 di
->i_ctime
= cpu_to_le64(inode_get_ctime_sec(inode
));
955 di
->i_ctime_nsec
= cpu_to_le32(inode_get_ctime_nsec(inode
));
956 ocfs2_update_inode_fsync_trans(handle
, inode
, 0);
958 ocfs2_journal_dirty(handle
, di_bh
);
961 ocfs2_commit_trans(osb
, handle
);
965 ocfs2_inode_unlock(inode
, 1);
967 ocfs2_rw_unlock(inode
, 1);
974 int ocfs2_ioctl_move_extents(struct file
*filp
, void __user
*argp
)
978 struct inode
*inode
= file_inode(filp
);
979 struct ocfs2_move_extents range
;
980 struct ocfs2_move_extents_context
*context
;
985 status
= mnt_want_write_file(filp
);
989 if ((!S_ISREG(inode
->i_mode
)) || !(filp
->f_mode
& FMODE_WRITE
)) {
994 if (inode
->i_flags
& (S_IMMUTABLE
|S_APPEND
)) {
999 context
= kzalloc(sizeof(struct ocfs2_move_extents_context
), GFP_NOFS
);
1006 context
->inode
= inode
;
1007 context
->file
= filp
;
1009 if (copy_from_user(&range
, argp
, sizeof(range
))) {
1014 if (range
.me_start
> i_size_read(inode
)) {
1019 if (range
.me_start
+ range
.me_len
> i_size_read(inode
))
1020 range
.me_len
= i_size_read(inode
) - range
.me_start
;
1022 context
->range
= &range
;
1025 * ok, the default theshold for the defragmentation
1026 * is 1M, since our maximum clustersize was 1M also.
1029 if (!range
.me_threshold
)
1030 range
.me_threshold
= 1024 * 1024;
1032 if (range
.me_threshold
> i_size_read(inode
))
1033 range
.me_threshold
= i_size_read(inode
);
1035 if (range
.me_flags
& OCFS2_MOVE_EXT_FL_AUTO_DEFRAG
) {
1036 context
->auto_defrag
= 1;
1038 if (range
.me_flags
& OCFS2_MOVE_EXT_FL_PART_DEFRAG
)
1039 context
->partial
= 1;
1042 * first best-effort attempt to validate and adjust the goal
1043 * (physical address in block), while it can't guarantee later
1044 * operation can succeed all the time since global_bitmap may
1045 * change a bit over time.
1048 status
= ocfs2_validate_and_adjust_move_goal(inode
, &range
);
1053 status
= ocfs2_move_extents(context
);
1058 * movement/defragmentation may end up being partially completed,
1059 * that's the reason why we need to return userspace the finished
1060 * length and new_offset even if failure happens somewhere.
1062 if (copy_to_user(argp
, &range
, sizeof(range
)))
1068 mnt_drop_write_file(filp
);