1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2009 Oracle. All rights reserved.
6 #include <linux/sched.h>
7 #include <linux/slab.h>
8 #include <linux/sort.h>
10 #include "delayed-ref.h"
11 #include "transaction.h"
14 struct kmem_cache
*btrfs_delayed_ref_head_cachep
;
15 struct kmem_cache
*btrfs_delayed_tree_ref_cachep
;
16 struct kmem_cache
*btrfs_delayed_data_ref_cachep
;
17 struct kmem_cache
*btrfs_delayed_extent_op_cachep
;
19 * delayed back reference update tracking. For subvolume trees
20 * we queue up extent allocations and backref maintenance for
21 * delayed processing. This avoids deep call chains where we
22 * add extents in the middle of btrfs_search_slot, and it allows
23 * us to buffer up frequently modified backrefs in an rb tree instead
24 * of hammering updates on the extent allocation tree.
28 * compare two delayed tree backrefs with same bytenr and type
30 static int comp_tree_refs(struct btrfs_delayed_tree_ref
*ref1
,
31 struct btrfs_delayed_tree_ref
*ref2
)
33 if (ref1
->node
.type
== BTRFS_TREE_BLOCK_REF_KEY
) {
34 if (ref1
->root
< ref2
->root
)
36 if (ref1
->root
> ref2
->root
)
39 if (ref1
->parent
< ref2
->parent
)
41 if (ref1
->parent
> ref2
->parent
)
48 * compare two delayed data backrefs with same bytenr and type
50 static int comp_data_refs(struct btrfs_delayed_data_ref
*ref1
,
51 struct btrfs_delayed_data_ref
*ref2
)
53 if (ref1
->node
.type
== BTRFS_EXTENT_DATA_REF_KEY
) {
54 if (ref1
->root
< ref2
->root
)
56 if (ref1
->root
> ref2
->root
)
58 if (ref1
->objectid
< ref2
->objectid
)
60 if (ref1
->objectid
> ref2
->objectid
)
62 if (ref1
->offset
< ref2
->offset
)
64 if (ref1
->offset
> ref2
->offset
)
67 if (ref1
->parent
< ref2
->parent
)
69 if (ref1
->parent
> ref2
->parent
)
75 static int comp_refs(struct btrfs_delayed_ref_node
*ref1
,
76 struct btrfs_delayed_ref_node
*ref2
,
81 if (ref1
->type
< ref2
->type
)
83 if (ref1
->type
> ref2
->type
)
85 if (ref1
->type
== BTRFS_TREE_BLOCK_REF_KEY
||
86 ref1
->type
== BTRFS_SHARED_BLOCK_REF_KEY
)
87 ret
= comp_tree_refs(btrfs_delayed_node_to_tree_ref(ref1
),
88 btrfs_delayed_node_to_tree_ref(ref2
));
90 ret
= comp_data_refs(btrfs_delayed_node_to_data_ref(ref1
),
91 btrfs_delayed_node_to_data_ref(ref2
));
95 if (ref1
->seq
< ref2
->seq
)
97 if (ref1
->seq
> ref2
->seq
)
103 /* insert a new ref to head ref rbtree */
104 static struct btrfs_delayed_ref_head
*htree_insert(struct rb_root_cached
*root
,
105 struct rb_node
*node
)
107 struct rb_node
**p
= &root
->rb_root
.rb_node
;
108 struct rb_node
*parent_node
= NULL
;
109 struct btrfs_delayed_ref_head
*entry
;
110 struct btrfs_delayed_ref_head
*ins
;
112 bool leftmost
= true;
114 ins
= rb_entry(node
, struct btrfs_delayed_ref_head
, href_node
);
115 bytenr
= ins
->bytenr
;
118 entry
= rb_entry(parent_node
, struct btrfs_delayed_ref_head
,
121 if (bytenr
< entry
->bytenr
) {
123 } else if (bytenr
> entry
->bytenr
) {
131 rb_link_node(node
, parent_node
, p
);
132 rb_insert_color_cached(node
, root
, leftmost
);
136 static struct btrfs_delayed_ref_node
* tree_insert(struct rb_root_cached
*root
,
137 struct btrfs_delayed_ref_node
*ins
)
139 struct rb_node
**p
= &root
->rb_root
.rb_node
;
140 struct rb_node
*node
= &ins
->ref_node
;
141 struct rb_node
*parent_node
= NULL
;
142 struct btrfs_delayed_ref_node
*entry
;
143 bool leftmost
= true;
149 entry
= rb_entry(parent_node
, struct btrfs_delayed_ref_node
,
151 comp
= comp_refs(ins
, entry
, true);
154 } else if (comp
> 0) {
162 rb_link_node(node
, parent_node
, p
);
163 rb_insert_color_cached(node
, root
, leftmost
);
167 static struct btrfs_delayed_ref_head
*find_first_ref_head(
168 struct btrfs_delayed_ref_root
*dr
)
171 struct btrfs_delayed_ref_head
*entry
;
173 n
= rb_first_cached(&dr
->href_root
);
177 entry
= rb_entry(n
, struct btrfs_delayed_ref_head
, href_node
);
183 * Find a head entry based on bytenr. This returns the delayed ref head if it
184 * was able to find one, or NULL if nothing was in that spot. If return_bigger
185 * is given, the next bigger entry is returned if no exact match is found.
187 static struct btrfs_delayed_ref_head
*find_ref_head(
188 struct btrfs_delayed_ref_root
*dr
, u64 bytenr
,
191 struct rb_root
*root
= &dr
->href_root
.rb_root
;
193 struct btrfs_delayed_ref_head
*entry
;
198 entry
= rb_entry(n
, struct btrfs_delayed_ref_head
, href_node
);
200 if (bytenr
< entry
->bytenr
)
202 else if (bytenr
> entry
->bytenr
)
207 if (entry
&& return_bigger
) {
208 if (bytenr
> entry
->bytenr
) {
209 n
= rb_next(&entry
->href_node
);
212 entry
= rb_entry(n
, struct btrfs_delayed_ref_head
,
220 int btrfs_delayed_ref_lock(struct btrfs_delayed_ref_root
*delayed_refs
,
221 struct btrfs_delayed_ref_head
*head
)
223 lockdep_assert_held(&delayed_refs
->lock
);
224 if (mutex_trylock(&head
->mutex
))
227 refcount_inc(&head
->refs
);
228 spin_unlock(&delayed_refs
->lock
);
230 mutex_lock(&head
->mutex
);
231 spin_lock(&delayed_refs
->lock
);
232 if (RB_EMPTY_NODE(&head
->href_node
)) {
233 mutex_unlock(&head
->mutex
);
234 btrfs_put_delayed_ref_head(head
);
237 btrfs_put_delayed_ref_head(head
);
241 static inline void drop_delayed_ref(struct btrfs_trans_handle
*trans
,
242 struct btrfs_delayed_ref_root
*delayed_refs
,
243 struct btrfs_delayed_ref_head
*head
,
244 struct btrfs_delayed_ref_node
*ref
)
246 lockdep_assert_held(&head
->lock
);
247 rb_erase_cached(&ref
->ref_node
, &head
->ref_tree
);
248 RB_CLEAR_NODE(&ref
->ref_node
);
249 if (!list_empty(&ref
->add_list
))
250 list_del(&ref
->add_list
);
252 btrfs_put_delayed_ref(ref
);
253 atomic_dec(&delayed_refs
->num_entries
);
256 static bool merge_ref(struct btrfs_trans_handle
*trans
,
257 struct btrfs_delayed_ref_root
*delayed_refs
,
258 struct btrfs_delayed_ref_head
*head
,
259 struct btrfs_delayed_ref_node
*ref
,
262 struct btrfs_delayed_ref_node
*next
;
263 struct rb_node
*node
= rb_next(&ref
->ref_node
);
266 while (!done
&& node
) {
269 next
= rb_entry(node
, struct btrfs_delayed_ref_node
, ref_node
);
270 node
= rb_next(node
);
271 if (seq
&& next
->seq
>= seq
)
273 if (comp_refs(ref
, next
, false))
276 if (ref
->action
== next
->action
) {
279 if (ref
->ref_mod
< next
->ref_mod
) {
283 mod
= -next
->ref_mod
;
286 drop_delayed_ref(trans
, delayed_refs
, head
, next
);
288 if (ref
->ref_mod
== 0) {
289 drop_delayed_ref(trans
, delayed_refs
, head
, ref
);
293 * Can't have multiples of the same ref on a tree block.
295 WARN_ON(ref
->type
== BTRFS_TREE_BLOCK_REF_KEY
||
296 ref
->type
== BTRFS_SHARED_BLOCK_REF_KEY
);
303 void btrfs_merge_delayed_refs(struct btrfs_trans_handle
*trans
,
304 struct btrfs_delayed_ref_root
*delayed_refs
,
305 struct btrfs_delayed_ref_head
*head
)
307 struct btrfs_fs_info
*fs_info
= trans
->fs_info
;
308 struct btrfs_delayed_ref_node
*ref
;
309 struct rb_node
*node
;
312 lockdep_assert_held(&head
->lock
);
314 if (RB_EMPTY_ROOT(&head
->ref_tree
.rb_root
))
317 /* We don't have too many refs to merge for data. */
321 spin_lock(&fs_info
->tree_mod_seq_lock
);
322 if (!list_empty(&fs_info
->tree_mod_seq_list
)) {
323 struct seq_list
*elem
;
325 elem
= list_first_entry(&fs_info
->tree_mod_seq_list
,
326 struct seq_list
, list
);
329 spin_unlock(&fs_info
->tree_mod_seq_lock
);
332 for (node
= rb_first_cached(&head
->ref_tree
); node
;
333 node
= rb_next(node
)) {
334 ref
= rb_entry(node
, struct btrfs_delayed_ref_node
, ref_node
);
335 if (seq
&& ref
->seq
>= seq
)
337 if (merge_ref(trans
, delayed_refs
, head
, ref
, seq
))
342 int btrfs_check_delayed_seq(struct btrfs_fs_info
*fs_info
, u64 seq
)
344 struct seq_list
*elem
;
347 spin_lock(&fs_info
->tree_mod_seq_lock
);
348 if (!list_empty(&fs_info
->tree_mod_seq_list
)) {
349 elem
= list_first_entry(&fs_info
->tree_mod_seq_list
,
350 struct seq_list
, list
);
351 if (seq
>= elem
->seq
) {
353 "holding back delayed_ref %#x.%x, lowest is %#x.%x",
354 (u32
)(seq
>> 32), (u32
)seq
,
355 (u32
)(elem
->seq
>> 32), (u32
)elem
->seq
);
360 spin_unlock(&fs_info
->tree_mod_seq_lock
);
364 struct btrfs_delayed_ref_head
*btrfs_select_ref_head(
365 struct btrfs_delayed_ref_root
*delayed_refs
)
367 struct btrfs_delayed_ref_head
*head
;
370 head
= find_ref_head(delayed_refs
, delayed_refs
->run_delayed_start
,
372 if (!head
&& delayed_refs
->run_delayed_start
!= 0) {
373 delayed_refs
->run_delayed_start
= 0;
374 head
= find_first_ref_head(delayed_refs
);
379 while (head
->processing
) {
380 struct rb_node
*node
;
382 node
= rb_next(&head
->href_node
);
384 if (delayed_refs
->run_delayed_start
== 0)
386 delayed_refs
->run_delayed_start
= 0;
389 head
= rb_entry(node
, struct btrfs_delayed_ref_head
,
393 head
->processing
= 1;
394 WARN_ON(delayed_refs
->num_heads_ready
== 0);
395 delayed_refs
->num_heads_ready
--;
396 delayed_refs
->run_delayed_start
= head
->bytenr
+
401 void btrfs_delete_ref_head(struct btrfs_delayed_ref_root
*delayed_refs
,
402 struct btrfs_delayed_ref_head
*head
)
404 lockdep_assert_held(&delayed_refs
->lock
);
405 lockdep_assert_held(&head
->lock
);
407 rb_erase_cached(&head
->href_node
, &delayed_refs
->href_root
);
408 RB_CLEAR_NODE(&head
->href_node
);
409 atomic_dec(&delayed_refs
->num_entries
);
410 delayed_refs
->num_heads
--;
411 if (head
->processing
== 0)
412 delayed_refs
->num_heads_ready
--;
416 * Helper to insert the ref_node to the tail or merge with tail.
418 * Return 0 for insert.
419 * Return >0 for merge.
421 static int insert_delayed_ref(struct btrfs_trans_handle
*trans
,
422 struct btrfs_delayed_ref_root
*root
,
423 struct btrfs_delayed_ref_head
*href
,
424 struct btrfs_delayed_ref_node
*ref
)
426 struct btrfs_delayed_ref_node
*exist
;
430 spin_lock(&href
->lock
);
431 exist
= tree_insert(&href
->ref_tree
, ref
);
435 /* Now we are sure we can merge */
437 if (exist
->action
== ref
->action
) {
440 /* Need to change action */
441 if (exist
->ref_mod
< ref
->ref_mod
) {
442 exist
->action
= ref
->action
;
443 mod
= -exist
->ref_mod
;
444 exist
->ref_mod
= ref
->ref_mod
;
445 if (ref
->action
== BTRFS_ADD_DELAYED_REF
)
446 list_add_tail(&exist
->add_list
,
447 &href
->ref_add_list
);
448 else if (ref
->action
== BTRFS_DROP_DELAYED_REF
) {
449 ASSERT(!list_empty(&exist
->add_list
));
450 list_del(&exist
->add_list
);
457 exist
->ref_mod
+= mod
;
459 /* remove existing tail if its ref_mod is zero */
460 if (exist
->ref_mod
== 0)
461 drop_delayed_ref(trans
, root
, href
, exist
);
462 spin_unlock(&href
->lock
);
465 if (ref
->action
== BTRFS_ADD_DELAYED_REF
)
466 list_add_tail(&ref
->add_list
, &href
->ref_add_list
);
467 atomic_inc(&root
->num_entries
);
468 spin_unlock(&href
->lock
);
473 * helper function to update the accounting in the head ref
474 * existing and update must have the same bytenr
476 static noinline
void update_existing_head_ref(struct btrfs_trans_handle
*trans
,
477 struct btrfs_delayed_ref_head
*existing
,
478 struct btrfs_delayed_ref_head
*update
,
479 int *old_ref_mod_ret
)
481 struct btrfs_delayed_ref_root
*delayed_refs
=
482 &trans
->transaction
->delayed_refs
;
483 struct btrfs_fs_info
*fs_info
= trans
->fs_info
;
486 BUG_ON(existing
->is_data
!= update
->is_data
);
488 spin_lock(&existing
->lock
);
489 if (update
->must_insert_reserved
) {
490 /* if the extent was freed and then
491 * reallocated before the delayed ref
492 * entries were processed, we can end up
493 * with an existing head ref without
494 * the must_insert_reserved flag set.
497 existing
->must_insert_reserved
= update
->must_insert_reserved
;
500 * update the num_bytes so we make sure the accounting
503 existing
->num_bytes
= update
->num_bytes
;
507 if (update
->extent_op
) {
508 if (!existing
->extent_op
) {
509 existing
->extent_op
= update
->extent_op
;
511 if (update
->extent_op
->update_key
) {
512 memcpy(&existing
->extent_op
->key
,
513 &update
->extent_op
->key
,
514 sizeof(update
->extent_op
->key
));
515 existing
->extent_op
->update_key
= true;
517 if (update
->extent_op
->update_flags
) {
518 existing
->extent_op
->flags_to_set
|=
519 update
->extent_op
->flags_to_set
;
520 existing
->extent_op
->update_flags
= true;
522 btrfs_free_delayed_extent_op(update
->extent_op
);
526 * update the reference mod on the head to reflect this new operation,
527 * only need the lock for this case cause we could be processing it
528 * currently, for refs we just added we know we're a-ok.
530 old_ref_mod
= existing
->total_ref_mod
;
532 *old_ref_mod_ret
= old_ref_mod
;
533 existing
->ref_mod
+= update
->ref_mod
;
534 existing
->total_ref_mod
+= update
->ref_mod
;
537 * If we are going to from a positive ref mod to a negative or vice
538 * versa we need to make sure to adjust pending_csums accordingly.
540 if (existing
->is_data
) {
542 btrfs_csum_bytes_to_leaves(fs_info
,
543 existing
->num_bytes
);
545 if (existing
->total_ref_mod
>= 0 && old_ref_mod
< 0) {
546 delayed_refs
->pending_csums
-= existing
->num_bytes
;
547 btrfs_delayed_refs_rsv_release(fs_info
, csum_leaves
);
549 if (existing
->total_ref_mod
< 0 && old_ref_mod
>= 0) {
550 delayed_refs
->pending_csums
+= existing
->num_bytes
;
551 trans
->delayed_ref_updates
+= csum_leaves
;
554 spin_unlock(&existing
->lock
);
557 static void init_delayed_ref_head(struct btrfs_delayed_ref_head
*head_ref
,
558 struct btrfs_qgroup_extent_record
*qrecord
,
559 u64 bytenr
, u64 num_bytes
, u64 ref_root
,
560 u64 reserved
, int action
, bool is_data
,
564 int must_insert_reserved
= 0;
566 /* If reserved is provided, it must be a data extent. */
567 BUG_ON(!is_data
&& reserved
);
570 * The head node stores the sum of all the mods, so dropping a ref
571 * should drop the sum in the head node by one.
573 if (action
== BTRFS_UPDATE_DELAYED_HEAD
)
575 else if (action
== BTRFS_DROP_DELAYED_REF
)
579 * BTRFS_ADD_DELAYED_EXTENT means that we need to update the reserved
580 * accounting when the extent is finally added, or if a later
581 * modification deletes the delayed ref without ever inserting the
582 * extent into the extent allocation tree. ref->must_insert_reserved
583 * is the flag used to record that accounting mods are required.
585 * Once we record must_insert_reserved, switch the action to
586 * BTRFS_ADD_DELAYED_REF because other special casing is not required.
588 if (action
== BTRFS_ADD_DELAYED_EXTENT
)
589 must_insert_reserved
= 1;
591 must_insert_reserved
= 0;
593 refcount_set(&head_ref
->refs
, 1);
594 head_ref
->bytenr
= bytenr
;
595 head_ref
->num_bytes
= num_bytes
;
596 head_ref
->ref_mod
= count_mod
;
597 head_ref
->must_insert_reserved
= must_insert_reserved
;
598 head_ref
->is_data
= is_data
;
599 head_ref
->is_system
= is_system
;
600 head_ref
->ref_tree
= RB_ROOT_CACHED
;
601 INIT_LIST_HEAD(&head_ref
->ref_add_list
);
602 RB_CLEAR_NODE(&head_ref
->href_node
);
603 head_ref
->processing
= 0;
604 head_ref
->total_ref_mod
= count_mod
;
605 spin_lock_init(&head_ref
->lock
);
606 mutex_init(&head_ref
->mutex
);
609 if (ref_root
&& reserved
) {
610 qrecord
->data_rsv
= reserved
;
611 qrecord
->data_rsv_refroot
= ref_root
;
613 qrecord
->bytenr
= bytenr
;
614 qrecord
->num_bytes
= num_bytes
;
615 qrecord
->old_roots
= NULL
;
620 * helper function to actually insert a head node into the rbtree.
621 * this does all the dirty work in terms of maintaining the correct
622 * overall modification count.
624 static noinline
struct btrfs_delayed_ref_head
*
625 add_delayed_ref_head(struct btrfs_trans_handle
*trans
,
626 struct btrfs_delayed_ref_head
*head_ref
,
627 struct btrfs_qgroup_extent_record
*qrecord
,
628 int action
, int *qrecord_inserted_ret
,
629 int *old_ref_mod
, int *new_ref_mod
)
631 struct btrfs_delayed_ref_head
*existing
;
632 struct btrfs_delayed_ref_root
*delayed_refs
;
633 int qrecord_inserted
= 0;
635 delayed_refs
= &trans
->transaction
->delayed_refs
;
637 /* Record qgroup extent info if provided */
639 if (btrfs_qgroup_trace_extent_nolock(trans
->fs_info
,
640 delayed_refs
, qrecord
))
643 qrecord_inserted
= 1;
646 trace_add_delayed_ref_head(trans
->fs_info
, head_ref
, action
);
648 existing
= htree_insert(&delayed_refs
->href_root
,
649 &head_ref
->href_node
);
651 update_existing_head_ref(trans
, existing
, head_ref
,
654 * we've updated the existing ref, free the newly
657 kmem_cache_free(btrfs_delayed_ref_head_cachep
, head_ref
);
662 if (head_ref
->is_data
&& head_ref
->ref_mod
< 0) {
663 delayed_refs
->pending_csums
+= head_ref
->num_bytes
;
664 trans
->delayed_ref_updates
+=
665 btrfs_csum_bytes_to_leaves(trans
->fs_info
,
666 head_ref
->num_bytes
);
668 delayed_refs
->num_heads
++;
669 delayed_refs
->num_heads_ready
++;
670 atomic_inc(&delayed_refs
->num_entries
);
671 trans
->delayed_ref_updates
++;
673 if (qrecord_inserted_ret
)
674 *qrecord_inserted_ret
= qrecord_inserted
;
676 *new_ref_mod
= head_ref
->total_ref_mod
;
682 * init_delayed_ref_common - Initialize the structure which represents a
683 * modification to a an extent.
685 * @fs_info: Internal to the mounted filesystem mount structure.
687 * @ref: The structure which is going to be initialized.
689 * @bytenr: The logical address of the extent for which a modification is
690 * going to be recorded.
692 * @num_bytes: Size of the extent whose modification is being recorded.
694 * @ref_root: The id of the root where this modification has originated, this
695 * can be either one of the well-known metadata trees or the
696 * subvolume id which references this extent.
698 * @action: Can be one of BTRFS_ADD_DELAYED_REF/BTRFS_DROP_DELAYED_REF or
699 * BTRFS_ADD_DELAYED_EXTENT
701 * @ref_type: Holds the type of the extent which is being recorded, can be
702 * one of BTRFS_SHARED_BLOCK_REF_KEY/BTRFS_TREE_BLOCK_REF_KEY
703 * when recording a metadata extent or BTRFS_SHARED_DATA_REF_KEY/
704 * BTRFS_EXTENT_DATA_REF_KEY when recording data extent
706 static void init_delayed_ref_common(struct btrfs_fs_info
*fs_info
,
707 struct btrfs_delayed_ref_node
*ref
,
708 u64 bytenr
, u64 num_bytes
, u64 ref_root
,
709 int action
, u8 ref_type
)
713 if (action
== BTRFS_ADD_DELAYED_EXTENT
)
714 action
= BTRFS_ADD_DELAYED_REF
;
716 if (is_fstree(ref_root
))
717 seq
= atomic64_read(&fs_info
->tree_mod_seq
);
719 refcount_set(&ref
->refs
, 1);
720 ref
->bytenr
= bytenr
;
721 ref
->num_bytes
= num_bytes
;
723 ref
->action
= action
;
727 ref
->type
= ref_type
;
728 RB_CLEAR_NODE(&ref
->ref_node
);
729 INIT_LIST_HEAD(&ref
->add_list
);
733 * add a delayed tree ref. This does all of the accounting required
734 * to make sure the delayed ref is eventually processed before this
735 * transaction commits.
737 int btrfs_add_delayed_tree_ref(struct btrfs_trans_handle
*trans
,
738 struct btrfs_ref
*generic_ref
,
739 struct btrfs_delayed_extent_op
*extent_op
,
740 int *old_ref_mod
, int *new_ref_mod
)
742 struct btrfs_fs_info
*fs_info
= trans
->fs_info
;
743 struct btrfs_delayed_tree_ref
*ref
;
744 struct btrfs_delayed_ref_head
*head_ref
;
745 struct btrfs_delayed_ref_root
*delayed_refs
;
746 struct btrfs_qgroup_extent_record
*record
= NULL
;
747 int qrecord_inserted
;
749 int action
= generic_ref
->action
;
750 int level
= generic_ref
->tree_ref
.level
;
752 u64 bytenr
= generic_ref
->bytenr
;
753 u64 num_bytes
= generic_ref
->len
;
754 u64 parent
= generic_ref
->parent
;
757 is_system
= (generic_ref
->real_root
== BTRFS_CHUNK_TREE_OBJECTID
);
759 ASSERT(generic_ref
->type
== BTRFS_REF_METADATA
&& generic_ref
->action
);
760 BUG_ON(extent_op
&& extent_op
->is_data
);
761 ref
= kmem_cache_alloc(btrfs_delayed_tree_ref_cachep
, GFP_NOFS
);
765 head_ref
= kmem_cache_alloc(btrfs_delayed_ref_head_cachep
, GFP_NOFS
);
767 kmem_cache_free(btrfs_delayed_tree_ref_cachep
, ref
);
771 if (test_bit(BTRFS_FS_QUOTA_ENABLED
, &fs_info
->flags
) &&
772 is_fstree(generic_ref
->real_root
) &&
773 is_fstree(generic_ref
->tree_ref
.root
) &&
774 !generic_ref
->skip_qgroup
) {
775 record
= kzalloc(sizeof(*record
), GFP_NOFS
);
777 kmem_cache_free(btrfs_delayed_tree_ref_cachep
, ref
);
778 kmem_cache_free(btrfs_delayed_ref_head_cachep
, head_ref
);
784 ref_type
= BTRFS_SHARED_BLOCK_REF_KEY
;
786 ref_type
= BTRFS_TREE_BLOCK_REF_KEY
;
788 init_delayed_ref_common(fs_info
, &ref
->node
, bytenr
, num_bytes
,
789 generic_ref
->tree_ref
.root
, action
, ref_type
);
790 ref
->root
= generic_ref
->tree_ref
.root
;
791 ref
->parent
= parent
;
794 init_delayed_ref_head(head_ref
, record
, bytenr
, num_bytes
,
795 generic_ref
->tree_ref
.root
, 0, action
, false,
797 head_ref
->extent_op
= extent_op
;
799 delayed_refs
= &trans
->transaction
->delayed_refs
;
800 spin_lock(&delayed_refs
->lock
);
803 * insert both the head node and the new ref without dropping
806 head_ref
= add_delayed_ref_head(trans
, head_ref
, record
,
807 action
, &qrecord_inserted
,
808 old_ref_mod
, new_ref_mod
);
810 ret
= insert_delayed_ref(trans
, delayed_refs
, head_ref
, &ref
->node
);
811 spin_unlock(&delayed_refs
->lock
);
814 * Need to update the delayed_refs_rsv with any changes we may have
817 btrfs_update_delayed_refs_rsv(trans
);
819 trace_add_delayed_tree_ref(fs_info
, &ref
->node
, ref
,
820 action
== BTRFS_ADD_DELAYED_EXTENT
?
821 BTRFS_ADD_DELAYED_REF
: action
);
823 kmem_cache_free(btrfs_delayed_tree_ref_cachep
, ref
);
825 if (qrecord_inserted
)
826 btrfs_qgroup_trace_extent_post(fs_info
, record
);
832 * add a delayed data ref. it's similar to btrfs_add_delayed_tree_ref.
834 int btrfs_add_delayed_data_ref(struct btrfs_trans_handle
*trans
,
835 struct btrfs_ref
*generic_ref
,
836 u64 reserved
, int *old_ref_mod
,
839 struct btrfs_fs_info
*fs_info
= trans
->fs_info
;
840 struct btrfs_delayed_data_ref
*ref
;
841 struct btrfs_delayed_ref_head
*head_ref
;
842 struct btrfs_delayed_ref_root
*delayed_refs
;
843 struct btrfs_qgroup_extent_record
*record
= NULL
;
844 int qrecord_inserted
;
845 int action
= generic_ref
->action
;
847 u64 bytenr
= generic_ref
->bytenr
;
848 u64 num_bytes
= generic_ref
->len
;
849 u64 parent
= generic_ref
->parent
;
850 u64 ref_root
= generic_ref
->data_ref
.ref_root
;
851 u64 owner
= generic_ref
->data_ref
.ino
;
852 u64 offset
= generic_ref
->data_ref
.offset
;
855 ASSERT(generic_ref
->type
== BTRFS_REF_DATA
&& action
);
856 ref
= kmem_cache_alloc(btrfs_delayed_data_ref_cachep
, GFP_NOFS
);
861 ref_type
= BTRFS_SHARED_DATA_REF_KEY
;
863 ref_type
= BTRFS_EXTENT_DATA_REF_KEY
;
864 init_delayed_ref_common(fs_info
, &ref
->node
, bytenr
, num_bytes
,
865 ref_root
, action
, ref_type
);
866 ref
->root
= ref_root
;
867 ref
->parent
= parent
;
868 ref
->objectid
= owner
;
869 ref
->offset
= offset
;
872 head_ref
= kmem_cache_alloc(btrfs_delayed_ref_head_cachep
, GFP_NOFS
);
874 kmem_cache_free(btrfs_delayed_data_ref_cachep
, ref
);
878 if (test_bit(BTRFS_FS_QUOTA_ENABLED
, &fs_info
->flags
) &&
879 is_fstree(ref_root
) &&
880 is_fstree(generic_ref
->real_root
) &&
881 !generic_ref
->skip_qgroup
) {
882 record
= kzalloc(sizeof(*record
), GFP_NOFS
);
884 kmem_cache_free(btrfs_delayed_data_ref_cachep
, ref
);
885 kmem_cache_free(btrfs_delayed_ref_head_cachep
,
891 init_delayed_ref_head(head_ref
, record
, bytenr
, num_bytes
, ref_root
,
892 reserved
, action
, true, false);
893 head_ref
->extent_op
= NULL
;
895 delayed_refs
= &trans
->transaction
->delayed_refs
;
896 spin_lock(&delayed_refs
->lock
);
899 * insert both the head node and the new ref without dropping
902 head_ref
= add_delayed_ref_head(trans
, head_ref
, record
,
903 action
, &qrecord_inserted
,
904 old_ref_mod
, new_ref_mod
);
906 ret
= insert_delayed_ref(trans
, delayed_refs
, head_ref
, &ref
->node
);
907 spin_unlock(&delayed_refs
->lock
);
910 * Need to update the delayed_refs_rsv with any changes we may have
913 btrfs_update_delayed_refs_rsv(trans
);
915 trace_add_delayed_data_ref(trans
->fs_info
, &ref
->node
, ref
,
916 action
== BTRFS_ADD_DELAYED_EXTENT
?
917 BTRFS_ADD_DELAYED_REF
: action
);
919 kmem_cache_free(btrfs_delayed_data_ref_cachep
, ref
);
922 if (qrecord_inserted
)
923 return btrfs_qgroup_trace_extent_post(fs_info
, record
);
927 int btrfs_add_delayed_extent_op(struct btrfs_trans_handle
*trans
,
928 u64 bytenr
, u64 num_bytes
,
929 struct btrfs_delayed_extent_op
*extent_op
)
931 struct btrfs_delayed_ref_head
*head_ref
;
932 struct btrfs_delayed_ref_root
*delayed_refs
;
934 head_ref
= kmem_cache_alloc(btrfs_delayed_ref_head_cachep
, GFP_NOFS
);
938 init_delayed_ref_head(head_ref
, NULL
, bytenr
, num_bytes
, 0, 0,
939 BTRFS_UPDATE_DELAYED_HEAD
, extent_op
->is_data
,
941 head_ref
->extent_op
= extent_op
;
943 delayed_refs
= &trans
->transaction
->delayed_refs
;
944 spin_lock(&delayed_refs
->lock
);
946 add_delayed_ref_head(trans
, head_ref
, NULL
, BTRFS_UPDATE_DELAYED_HEAD
,
949 spin_unlock(&delayed_refs
->lock
);
952 * Need to update the delayed_refs_rsv with any changes we may have
955 btrfs_update_delayed_refs_rsv(trans
);
960 * this does a simple search for the head node for a given extent.
961 * It must be called with the delayed ref spinlock held, and it returns
962 * the head node if any where found, or NULL if not.
964 struct btrfs_delayed_ref_head
*
965 btrfs_find_delayed_ref_head(struct btrfs_delayed_ref_root
*delayed_refs
, u64 bytenr
)
967 return find_ref_head(delayed_refs
, bytenr
, false);
970 void __cold
btrfs_delayed_ref_exit(void)
972 kmem_cache_destroy(btrfs_delayed_ref_head_cachep
);
973 kmem_cache_destroy(btrfs_delayed_tree_ref_cachep
);
974 kmem_cache_destroy(btrfs_delayed_data_ref_cachep
);
975 kmem_cache_destroy(btrfs_delayed_extent_op_cachep
);
978 int __init
btrfs_delayed_ref_init(void)
980 btrfs_delayed_ref_head_cachep
= kmem_cache_create(
981 "btrfs_delayed_ref_head",
982 sizeof(struct btrfs_delayed_ref_head
), 0,
983 SLAB_MEM_SPREAD
, NULL
);
984 if (!btrfs_delayed_ref_head_cachep
)
987 btrfs_delayed_tree_ref_cachep
= kmem_cache_create(
988 "btrfs_delayed_tree_ref",
989 sizeof(struct btrfs_delayed_tree_ref
), 0,
990 SLAB_MEM_SPREAD
, NULL
);
991 if (!btrfs_delayed_tree_ref_cachep
)
994 btrfs_delayed_data_ref_cachep
= kmem_cache_create(
995 "btrfs_delayed_data_ref",
996 sizeof(struct btrfs_delayed_data_ref
), 0,
997 SLAB_MEM_SPREAD
, NULL
);
998 if (!btrfs_delayed_data_ref_cachep
)
1001 btrfs_delayed_extent_op_cachep
= kmem_cache_create(
1002 "btrfs_delayed_extent_op",
1003 sizeof(struct btrfs_delayed_extent_op
), 0,
1004 SLAB_MEM_SPREAD
, NULL
);
1005 if (!btrfs_delayed_extent_op_cachep
)
1010 btrfs_delayed_ref_exit();