1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
7 * Copyright (C) 2011 Oracle. All rights reserved.
10 #include <linux/types.h>
11 #include <linux/mount.h>
12 #include <linux/swap.h>
14 #include <cluster/masklog.h>
17 #include "ocfs2_ioctl.h"
20 #include "localalloc.h"
23 #include "extent_map.h"
30 #include "buffer_head_io.h"
32 #include "refcounttree.h"
33 #include "move_extents.h"
35 struct ocfs2_move_extents_context
{
44 struct ocfs2_move_extents
*range
;
45 struct ocfs2_extent_tree et
;
46 struct ocfs2_alloc_context
*meta_ac
;
47 struct ocfs2_alloc_context
*data_ac
;
48 struct ocfs2_cached_dealloc_ctxt dealloc
;
51 static int __ocfs2_move_extent(handle_t
*handle
,
52 struct ocfs2_move_extents_context
*context
,
53 u32 cpos
, u32 len
, u32 p_cpos
, u32 new_p_cpos
,
57 struct inode
*inode
= context
->inode
;
58 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
59 struct ocfs2_extent_rec
*rec
, replace_rec
;
60 struct ocfs2_path
*path
= NULL
;
61 struct ocfs2_extent_list
*el
;
62 u64 ino
= ocfs2_metadata_cache_owner(context
->et
.et_ci
);
63 u64 old_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, p_cpos
);
65 ret
= ocfs2_duplicate_clusters_by_page(handle
, inode
, cpos
,
66 p_cpos
, new_p_cpos
, len
);
72 memset(&replace_rec
, 0, sizeof(replace_rec
));
73 replace_rec
.e_cpos
= cpu_to_le32(cpos
);
74 replace_rec
.e_leaf_clusters
= cpu_to_le16(len
);
75 replace_rec
.e_blkno
= cpu_to_le64(ocfs2_clusters_to_blocks(inode
->i_sb
,
78 path
= ocfs2_new_path_from_et(&context
->et
);
85 ret
= ocfs2_find_path(INODE_CACHE(inode
), path
, cpos
);
91 el
= path_leaf_el(path
);
93 index
= ocfs2_search_extent_list(el
, cpos
);
95 ret
= ocfs2_error(inode
->i_sb
,
96 "Inode %llu has an extent at cpos %u which can no longer be found\n",
97 (unsigned long long)ino
, cpos
);
101 rec
= &el
->l_recs
[index
];
103 BUG_ON(ext_flags
!= rec
->e_flags
);
105 * after moving/defraging to new location, the extent is not going
106 * to be refcounted anymore.
108 replace_rec
.e_flags
= ext_flags
& ~OCFS2_EXT_REFCOUNTED
;
110 ret
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
),
111 context
->et
.et_root_bh
,
112 OCFS2_JOURNAL_ACCESS_WRITE
);
118 ret
= ocfs2_split_extent(handle
, &context
->et
, path
, index
,
119 &replace_rec
, context
->meta_ac
,
126 ocfs2_journal_dirty(handle
, context
->et
.et_root_bh
);
128 context
->new_phys_cpos
= new_p_cpos
;
131 * need I to append truncate log for old clusters?
134 if (ext_flags
& OCFS2_EXT_REFCOUNTED
)
135 ret
= ocfs2_decrease_refcount(inode
, handle
,
136 ocfs2_blocks_to_clusters(osb
->sb
,
138 len
, context
->meta_ac
,
139 &context
->dealloc
, 1);
141 ret
= ocfs2_truncate_log_append(osb
, handle
,
145 ocfs2_update_inode_fsync_trans(handle
, inode
, 0);
147 ocfs2_free_path(path
);
152 * lock allocator, and reserve appropriate number of bits for
155 static int ocfs2_lock_meta_allocator_move_extents(struct inode
*inode
,
156 struct ocfs2_extent_tree
*et
,
157 u32 clusters_to_move
,
158 u32 extents_to_split
,
159 struct ocfs2_alloc_context
**meta_ac
,
163 int ret
, num_free_extents
;
164 unsigned int max_recs_needed
= 2 * extents_to_split
+ clusters_to_move
;
165 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
167 num_free_extents
= ocfs2_num_free_extents(et
);
168 if (num_free_extents
< 0) {
169 ret
= num_free_extents
;
174 if (!num_free_extents
||
175 (ocfs2_sparse_alloc(osb
) && num_free_extents
< max_recs_needed
))
176 extra_blocks
+= ocfs2_extend_meta_needed(et
->et_root_el
);
178 ret
= ocfs2_reserve_new_metadata_blocks(osb
, extra_blocks
, meta_ac
);
185 *credits
+= ocfs2_calc_extend_credits(osb
->sb
, et
->et_root_el
);
187 mlog(0, "reserve metadata_blocks: %d, data_clusters: %u, credits: %d\n",
188 extra_blocks
, clusters_to_move
, *credits
);
192 ocfs2_free_alloc_context(*meta_ac
);
201 * Using one journal handle to guarantee the data consistency in case
202 * crash happens anywhere.
204 * XXX: defrag can end up with finishing partial extent as requested,
205 * due to not enough contiguous clusters can be found in allocator.
207 static int ocfs2_defrag_extent(struct ocfs2_move_extents_context
*context
,
208 u32 cpos
, u32 phys_cpos
, u32
*len
, int ext_flags
)
210 int ret
, credits
= 0, extra_blocks
= 0, partial
= context
->partial
;
212 struct inode
*inode
= context
->inode
;
213 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
214 struct inode
*tl_inode
= osb
->osb_tl_inode
;
215 struct ocfs2_refcount_tree
*ref_tree
= NULL
;
216 u32 new_phys_cpos
, new_len
;
217 u64 phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
220 if ((ext_flags
& OCFS2_EXT_REFCOUNTED
) && *len
) {
221 BUG_ON(!ocfs2_is_refcount_inode(inode
));
222 BUG_ON(!context
->refcount_loc
);
224 ret
= ocfs2_lock_refcount_tree(osb
, context
->refcount_loc
, 1,
231 ret
= ocfs2_prepare_refcount_change_for_del(inode
,
232 context
->refcount_loc
,
243 ret
= ocfs2_lock_meta_allocator_move_extents(inode
, &context
->et
,
246 extra_blocks
, &credits
);
253 * should be using allocation reservation strategy there?
255 * if (context->data_ac)
256 * context->data_ac->ac_resv = &OCFS2_I(inode)->ip_la_data_resv;
259 inode_lock(tl_inode
);
261 if (ocfs2_truncate_log_needs_flush(osb
)) {
262 ret
= __ocfs2_flush_truncate_log(osb
);
265 goto out_unlock_mutex
;
270 * Make sure ocfs2_reserve_cluster is called after
271 * __ocfs2_flush_truncate_log, otherwise, dead lock may happen.
273 * If ocfs2_reserve_cluster is called
274 * before __ocfs2_flush_truncate_log, dead lock on global bitmap
278 ret
= ocfs2_reserve_clusters(osb
, *len
, &context
->data_ac
);
281 goto out_unlock_mutex
;
284 handle
= ocfs2_start_trans(osb
, credits
);
285 if (IS_ERR(handle
)) {
286 ret
= PTR_ERR(handle
);
288 goto out_unlock_mutex
;
291 ret
= __ocfs2_claim_clusters(handle
, context
->data_ac
, 1, *len
,
292 &new_phys_cpos
, &new_len
);
299 * allowing partial extent moving is kind of 'pros and cons', it makes
300 * whole defragmentation less likely to fail, on the contrary, the bad
301 * thing is it may make the fs even more fragmented after moving, let
302 * userspace make a good decision here.
304 if (new_len
!= *len
) {
305 mlog(0, "len_claimed: %u, len: %u\n", new_len
, *len
);
307 context
->range
->me_flags
&= ~OCFS2_MOVE_EXT_FL_COMPLETE
;
314 mlog(0, "cpos: %u, phys_cpos: %u, new_phys_cpos: %u\n", cpos
,
315 phys_cpos
, new_phys_cpos
);
317 ret
= __ocfs2_move_extent(handle
, context
, cpos
, new_len
, phys_cpos
,
318 new_phys_cpos
, ext_flags
);
322 if (partial
&& (new_len
!= *len
))
326 * Here we should write the new page out first if we are
327 * in write-back mode.
329 ret
= ocfs2_cow_sync_writeback(inode
->i_sb
, context
->inode
, cpos
, *len
);
334 if (need_free
&& context
->data_ac
) {
335 struct ocfs2_alloc_context
*data_ac
= context
->data_ac
;
337 if (context
->data_ac
->ac_which
== OCFS2_AC_USE_LOCAL
)
338 ocfs2_free_local_alloc_bits(osb
, handle
, data_ac
,
339 new_phys_cpos
, new_len
);
341 ocfs2_free_clusters(handle
,
344 ocfs2_clusters_to_blocks(osb
->sb
, new_phys_cpos
),
348 ocfs2_commit_trans(osb
, handle
);
351 inode_unlock(tl_inode
);
353 if (context
->data_ac
) {
354 ocfs2_free_alloc_context(context
->data_ac
);
355 context
->data_ac
= NULL
;
358 if (context
->meta_ac
) {
359 ocfs2_free_alloc_context(context
->meta_ac
);
360 context
->meta_ac
= NULL
;
365 ocfs2_unlock_refcount_tree(osb
, ref_tree
, 1);
371 * find the victim alloc group, where #blkno fits.
373 static int ocfs2_find_victim_alloc_group(struct inode
*inode
,
377 struct buffer_head
**ret_bh
)
379 int ret
, i
, bits_per_unit
= 0;
383 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
384 struct buffer_head
*ac_bh
= NULL
, *gd_bh
= NULL
;
385 struct ocfs2_chain_list
*cl
;
386 struct ocfs2_chain_rec
*rec
;
387 struct ocfs2_dinode
*ac_dinode
;
388 struct ocfs2_group_desc
*bg
;
390 ocfs2_sprintf_system_inode_name(namebuf
, sizeof(namebuf
), type
, slot
);
391 ret
= ocfs2_lookup_ino_from_name(osb
->sys_root_inode
, namebuf
,
392 strlen(namebuf
), &blkno
);
398 ret
= ocfs2_read_blocks_sync(osb
, blkno
, 1, &ac_bh
);
404 ac_dinode
= (struct ocfs2_dinode
*)ac_bh
->b_data
;
405 cl
= &(ac_dinode
->id2
.i_chain
);
406 rec
= &(cl
->cl_recs
[0]);
408 if (type
== GLOBAL_BITMAP_SYSTEM_INODE
)
409 bits_per_unit
= osb
->s_clustersize_bits
-
410 inode
->i_sb
->s_blocksize_bits
;
412 * 'vict_blkno' was out of the valid range.
414 if ((vict_blkno
< le64_to_cpu(rec
->c_blkno
)) ||
415 (vict_blkno
>= ((u64
)le32_to_cpu(ac_dinode
->id1
.bitmap1
.i_total
) <<
421 for (i
= 0; i
< le16_to_cpu(cl
->cl_next_free_rec
); i
++) {
423 rec
= &(cl
->cl_recs
[i
]);
431 blkno
= le64_to_cpu(rec
->c_blkno
);
433 blkno
= le64_to_cpu(bg
->bg_next_group
);
440 ret
= ocfs2_read_blocks_sync(osb
, blkno
, 1, &gd_bh
);
446 bg
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
448 if (vict_blkno
< (le64_to_cpu(bg
->bg_blkno
) +
449 le16_to_cpu(bg
->bg_bits
))) {
452 *vict_bit
= (vict_blkno
- blkno
) >>
454 mlog(0, "find the victim group: #%llu, "
455 "total_bits: %u, vict_bit: %u\n",
456 blkno
, le16_to_cpu(bg
->bg_bits
),
461 } while (le64_to_cpu(bg
->bg_next_group
));
469 * caller has to release the gd_bh properly.
475 * XXX: helper to validate and adjust moving goal.
477 static int ocfs2_validate_and_adjust_move_goal(struct inode
*inode
,
478 struct ocfs2_move_extents
*range
)
480 int ret
, goal_bit
= 0;
482 struct buffer_head
*gd_bh
= NULL
;
483 struct ocfs2_group_desc
*bg
;
484 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
485 int c_to_b
= 1 << (osb
->s_clustersize_bits
-
486 inode
->i_sb
->s_blocksize_bits
);
489 * make goal become cluster aligned.
491 range
->me_goal
= ocfs2_block_to_cluster_start(inode
->i_sb
,
494 * validate goal sits within global_bitmap, and return the victim
497 ret
= ocfs2_find_victim_alloc_group(inode
, range
->me_goal
,
498 GLOBAL_BITMAP_SYSTEM_INODE
,
504 bg
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
507 * moving goal is not allowd to start with a group desc blok(#0 blk)
508 * let's compromise to the latter cluster.
510 if (range
->me_goal
== le64_to_cpu(bg
->bg_blkno
))
511 range
->me_goal
+= c_to_b
;
514 * movement is not gonna cross two groups.
516 if ((le16_to_cpu(bg
->bg_bits
) - goal_bit
) * osb
->s_clustersize
<
522 * more exact validations/adjustments will be performed later during
523 * moving operation for each extent range.
525 mlog(0, "extents get ready to be moved to #%llu block\n",
534 static void ocfs2_probe_alloc_group(struct inode
*inode
, struct buffer_head
*bh
,
535 int *goal_bit
, u32 move_len
, u32 max_hop
,
538 int i
, used
, last_free_bits
= 0, base_bit
= *goal_bit
;
539 struct ocfs2_group_desc
*gd
= (struct ocfs2_group_desc
*)bh
->b_data
;
540 u32 base_cpos
= ocfs2_blocks_to_clusters(inode
->i_sb
,
541 le64_to_cpu(gd
->bg_blkno
));
543 for (i
= base_bit
; i
< le16_to_cpu(gd
->bg_bits
); i
++) {
545 used
= ocfs2_test_bit(i
, (unsigned long *)gd
->bg_bitmap
);
548 * we even tried searching the free chunk by jumping
549 * a 'max_hop' distance, but still failed.
551 if ((i
- base_bit
) > max_hop
) {
563 if (last_free_bits
== move_len
) {
565 *phys_cpos
= base_cpos
+ i
;
570 mlog(0, "found phys_cpos: %u to fit the wanted moving.\n", *phys_cpos
);
573 static int ocfs2_move_extent(struct ocfs2_move_extents_context
*context
,
574 u32 cpos
, u32 phys_cpos
, u32
*new_phys_cpos
,
575 u32 len
, int ext_flags
)
577 int ret
, credits
= 0, extra_blocks
= 0, goal_bit
= 0;
579 struct inode
*inode
= context
->inode
;
580 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
581 struct inode
*tl_inode
= osb
->osb_tl_inode
;
582 struct inode
*gb_inode
= NULL
;
583 struct buffer_head
*gb_bh
= NULL
;
584 struct buffer_head
*gd_bh
= NULL
;
585 struct ocfs2_group_desc
*gd
;
586 struct ocfs2_refcount_tree
*ref_tree
= NULL
;
587 u32 move_max_hop
= ocfs2_blocks_to_clusters(inode
->i_sb
,
588 context
->range
->me_threshold
);
589 u64 phys_blkno
, new_phys_blkno
;
591 phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
593 if ((ext_flags
& OCFS2_EXT_REFCOUNTED
) && len
) {
594 BUG_ON(!ocfs2_is_refcount_inode(inode
));
595 BUG_ON(!context
->refcount_loc
);
597 ret
= ocfs2_lock_refcount_tree(osb
, context
->refcount_loc
, 1,
604 ret
= ocfs2_prepare_refcount_change_for_del(inode
,
605 context
->refcount_loc
,
616 ret
= ocfs2_lock_meta_allocator_move_extents(inode
, &context
->et
,
619 extra_blocks
, &credits
);
626 * need to count 2 extra credits for global_bitmap inode and
629 credits
+= OCFS2_INODE_UPDATE_CREDITS
+ 1;
632 * ocfs2_move_extent() didn't reserve any clusters in lock_allocators()
633 * logic, while we still need to lock the global_bitmap.
635 gb_inode
= ocfs2_get_system_file_inode(osb
, GLOBAL_BITMAP_SYSTEM_INODE
,
638 mlog(ML_ERROR
, "unable to get global_bitmap inode\n");
643 inode_lock(gb_inode
);
645 ret
= ocfs2_inode_lock(gb_inode
, &gb_bh
, 1);
648 goto out_unlock_gb_mutex
;
651 inode_lock(tl_inode
);
653 handle
= ocfs2_start_trans(osb
, credits
);
654 if (IS_ERR(handle
)) {
655 ret
= PTR_ERR(handle
);
657 goto out_unlock_tl_inode
;
660 new_phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, *new_phys_cpos
);
661 ret
= ocfs2_find_victim_alloc_group(inode
, new_phys_blkno
,
662 GLOBAL_BITMAP_SYSTEM_INODE
,
671 * probe the victim cluster group to find a proper
672 * region to fit wanted movement, it even will perfrom
673 * a best-effort attempt by compromising to a threshold
676 ocfs2_probe_alloc_group(inode
, gd_bh
, &goal_bit
, len
, move_max_hop
,
678 if (!*new_phys_cpos
) {
683 ret
= __ocfs2_move_extent(handle
, context
, cpos
, len
, phys_cpos
,
684 *new_phys_cpos
, ext_flags
);
690 gd
= (struct ocfs2_group_desc
*)gd_bh
->b_data
;
691 ret
= ocfs2_alloc_dinode_update_counts(gb_inode
, handle
, gb_bh
, len
,
692 le16_to_cpu(gd
->bg_chain
));
698 ret
= ocfs2_block_group_set_bits(handle
, gb_inode
, gd
, gd_bh
,
701 ocfs2_rollback_alloc_dinode_counts(gb_inode
, gb_bh
, len
,
702 le16_to_cpu(gd
->bg_chain
));
707 * Here we should write the new page out first if we are
708 * in write-back mode.
710 ret
= ocfs2_cow_sync_writeback(inode
->i_sb
, context
->inode
, cpos
, len
);
715 ocfs2_commit_trans(osb
, handle
);
719 inode_unlock(tl_inode
);
721 ocfs2_inode_unlock(gb_inode
, 1);
723 inode_unlock(gb_inode
);
728 if (context
->meta_ac
) {
729 ocfs2_free_alloc_context(context
->meta_ac
);
730 context
->meta_ac
= NULL
;
734 ocfs2_unlock_refcount_tree(osb
, ref_tree
, 1);
740 * Helper to calculate the defraging length in one run according to threshold.
742 static void ocfs2_calc_extent_defrag_len(u32
*alloc_size
, u32
*len_defraged
,
743 u32 threshold
, int *skip
)
745 if ((*alloc_size
+ *len_defraged
) < threshold
) {
747 * proceed defragmentation until we meet the thresh
749 *len_defraged
+= *alloc_size
;
750 } else if (*len_defraged
== 0) {
752 * XXX: skip a large extent.
757 * split this extent to coalesce with former pieces as
758 * to reach the threshold.
760 * we're done here with one cycle of defragmentation
761 * in a size of 'thresh', resetting 'len_defraged'
762 * forces a new defragmentation.
764 *alloc_size
= threshold
- *len_defraged
;
769 static int __ocfs2_move_extents_range(struct buffer_head
*di_bh
,
770 struct ocfs2_move_extents_context
*context
)
772 int ret
= 0, flags
, do_defrag
, skip
= 0;
773 u32 cpos
, phys_cpos
, move_start
, len_to_move
, alloc_size
;
774 u32 len_defraged
= 0, defrag_thresh
= 0, new_phys_cpos
= 0;
776 struct inode
*inode
= context
->inode
;
777 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
778 struct ocfs2_move_extents
*range
= context
->range
;
779 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
781 if ((i_size_read(inode
) == 0) || (range
->me_len
== 0))
784 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
787 context
->refcount_loc
= le64_to_cpu(di
->i_refcount_loc
);
789 ocfs2_init_dinode_extent_tree(&context
->et
, INODE_CACHE(inode
), di_bh
);
790 ocfs2_init_dealloc_ctxt(&context
->dealloc
);
798 do_defrag
= context
->auto_defrag
;
801 * extents moving happens in unit of clusters, for the sake
802 * of simplicity, we may ignore two clusters where 'byte_start'
803 * and 'byte_start + len' were within.
805 move_start
= ocfs2_clusters_for_bytes(osb
->sb
, range
->me_start
);
806 len_to_move
= (range
->me_start
+ range
->me_len
) >>
807 osb
->s_clustersize_bits
;
808 if (len_to_move
>= move_start
)
809 len_to_move
-= move_start
;
814 defrag_thresh
= range
->me_threshold
>> osb
->s_clustersize_bits
;
815 if (defrag_thresh
<= 1)
818 new_phys_cpos
= ocfs2_blocks_to_clusters(inode
->i_sb
,
821 mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u, "
823 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
824 (unsigned long long)range
->me_start
,
825 (unsigned long long)range
->me_len
,
826 move_start
, len_to_move
, defrag_thresh
);
829 while (len_to_move
) {
830 ret
= ocfs2_get_clusters(inode
, cpos
, &phys_cpos
, &alloc_size
,
837 if (alloc_size
> len_to_move
)
838 alloc_size
= len_to_move
;
841 * XXX: how to deal with a hole:
843 * - skip the hole of course
844 * - force a new defragmentation
854 ocfs2_calc_extent_defrag_len(&alloc_size
, &len_defraged
,
855 defrag_thresh
, &skip
);
864 mlog(0, "#Defrag: cpos: %u, phys_cpos: %u, "
865 "alloc_size: %u, len_defraged: %u\n",
866 cpos
, phys_cpos
, alloc_size
, len_defraged
);
868 ret
= ocfs2_defrag_extent(context
, cpos
, phys_cpos
,
871 ret
= ocfs2_move_extent(context
, cpos
, phys_cpos
,
872 &new_phys_cpos
, alloc_size
,
875 new_phys_cpos
+= alloc_size
;
883 context
->clusters_moved
+= alloc_size
;
886 len_to_move
-= alloc_size
;
890 range
->me_flags
|= OCFS2_MOVE_EXT_FL_COMPLETE
;
893 range
->me_moved_len
= ocfs2_clusters_to_bytes(osb
->sb
,
894 context
->clusters_moved
);
895 range
->me_new_offset
= ocfs2_clusters_to_bytes(osb
->sb
,
896 context
->new_phys_cpos
);
898 ocfs2_schedule_truncate_log_flush(osb
, 1);
899 ocfs2_run_deallocs(osb
, &context
->dealloc
);
904 static int ocfs2_move_extents(struct ocfs2_move_extents_context
*context
)
908 struct inode
*inode
= context
->inode
;
909 struct ocfs2_dinode
*di
;
910 struct buffer_head
*di_bh
= NULL
;
911 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
913 if (ocfs2_is_hard_readonly(osb
) || ocfs2_is_soft_readonly(osb
))
919 * This prevents concurrent writes from other nodes
921 status
= ocfs2_rw_lock(inode
, 1);
927 status
= ocfs2_inode_lock(inode
, &di_bh
, 1);
934 * rememer ip_xattr_sem also needs to be held if necessary
936 down_write(&OCFS2_I(inode
)->ip_alloc_sem
);
938 status
= __ocfs2_move_extents_range(di_bh
, context
);
940 up_write(&OCFS2_I(inode
)->ip_alloc_sem
);
943 goto out_inode_unlock
;
947 * We update ctime for these changes
949 handle
= ocfs2_start_trans(osb
, OCFS2_INODE_UPDATE_CREDITS
);
950 if (IS_ERR(handle
)) {
951 status
= PTR_ERR(handle
);
953 goto out_inode_unlock
;
956 status
= ocfs2_journal_access_di(handle
, INODE_CACHE(inode
), di_bh
,
957 OCFS2_JOURNAL_ACCESS_WRITE
);
963 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
964 inode
->i_ctime
= current_time(inode
);
965 di
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
966 di
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
967 ocfs2_update_inode_fsync_trans(handle
, inode
, 0);
969 ocfs2_journal_dirty(handle
, di_bh
);
972 ocfs2_commit_trans(osb
, handle
);
976 ocfs2_inode_unlock(inode
, 1);
978 ocfs2_rw_unlock(inode
, 1);
985 int ocfs2_ioctl_move_extents(struct file
*filp
, void __user
*argp
)
989 struct inode
*inode
= file_inode(filp
);
990 struct ocfs2_move_extents range
;
991 struct ocfs2_move_extents_context
*context
;
996 status
= mnt_want_write_file(filp
);
1000 if ((!S_ISREG(inode
->i_mode
)) || !(filp
->f_mode
& FMODE_WRITE
)) {
1005 if (inode
->i_flags
& (S_IMMUTABLE
|S_APPEND
)) {
1010 context
= kzalloc(sizeof(struct ocfs2_move_extents_context
), GFP_NOFS
);
1017 context
->inode
= inode
;
1018 context
->file
= filp
;
1020 if (copy_from_user(&range
, argp
, sizeof(range
))) {
1025 if (range
.me_start
> i_size_read(inode
)) {
1030 if (range
.me_start
+ range
.me_len
> i_size_read(inode
))
1031 range
.me_len
= i_size_read(inode
) - range
.me_start
;
1033 context
->range
= &range
;
1035 if (range
.me_flags
& OCFS2_MOVE_EXT_FL_AUTO_DEFRAG
) {
1036 context
->auto_defrag
= 1;
1038 * ok, the default theshold for the defragmentation
1039 * is 1M, since our maximum clustersize was 1M also.
1042 if (!range
.me_threshold
)
1043 range
.me_threshold
= 1024 * 1024;
1045 if (range
.me_threshold
> i_size_read(inode
))
1046 range
.me_threshold
= i_size_read(inode
);
1048 if (range
.me_flags
& OCFS2_MOVE_EXT_FL_PART_DEFRAG
)
1049 context
->partial
= 1;
1052 * first best-effort attempt to validate and adjust the goal
1053 * (physical address in block), while it can't guarantee later
1054 * operation can succeed all the time since global_bitmap may
1055 * change a bit over time.
1058 status
= ocfs2_validate_and_adjust_move_goal(inode
, &range
);
1063 status
= ocfs2_move_extents(context
);
1068 * movement/defragmentation may end up being partially completed,
1069 * that's the reason why we need to return userspace the finished
1070 * length and new_offset even if failure happens somewhere.
1072 if (copy_to_user(argp
, &range
, sizeof(range
)))
1078 mnt_drop_write_file(filp
);