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 *root,
105 struct rb_node *node)
107 struct rb_node **p = &root->rb_node;
108 struct rb_node *parent_node = NULL;
109 struct btrfs_delayed_ref_head *entry;
110 struct btrfs_delayed_ref_head *ins;
113 ins = rb_entry(node, struct btrfs_delayed_ref_head, href_node);
114 bytenr = ins->bytenr;
117 entry = rb_entry(parent_node, struct btrfs_delayed_ref_head,
120 if (bytenr < entry->bytenr)
122 else if (bytenr > entry->bytenr)
128 rb_link_node(node, parent_node, p);
129 rb_insert_color(node, root);
133 static struct btrfs_delayed_ref_node* tree_insert(struct rb_root *root,
134 struct btrfs_delayed_ref_node *ins)
136 struct rb_node **p = &root->rb_node;
137 struct rb_node *node = &ins->ref_node;
138 struct rb_node *parent_node = NULL;
139 struct btrfs_delayed_ref_node *entry;
145 entry = rb_entry(parent_node, struct btrfs_delayed_ref_node,
147 comp = comp_refs(ins, entry, true);
156 rb_link_node(node, parent_node, p);
157 rb_insert_color(node, root);
162 * find an head entry based on bytenr. This returns the delayed ref
163 * head if it was able to find one, or NULL if nothing was in that spot.
164 * If return_bigger is given, the next bigger entry is returned if no exact
167 static struct btrfs_delayed_ref_head *
168 find_ref_head(struct rb_root *root, u64 bytenr,
172 struct btrfs_delayed_ref_head *entry;
177 entry = rb_entry(n, struct btrfs_delayed_ref_head, href_node);
179 if (bytenr < entry->bytenr)
181 else if (bytenr > entry->bytenr)
186 if (entry && return_bigger) {
187 if (bytenr > entry->bytenr) {
188 n = rb_next(&entry->href_node);
191 entry = rb_entry(n, struct btrfs_delayed_ref_head,
200 int btrfs_delayed_ref_lock(struct btrfs_trans_handle *trans,
201 struct btrfs_delayed_ref_head *head)
203 struct btrfs_delayed_ref_root *delayed_refs;
205 delayed_refs = &trans->transaction->delayed_refs;
206 lockdep_assert_held(&delayed_refs->lock);
207 if (mutex_trylock(&head->mutex))
210 refcount_inc(&head->refs);
211 spin_unlock(&delayed_refs->lock);
213 mutex_lock(&head->mutex);
214 spin_lock(&delayed_refs->lock);
215 if (RB_EMPTY_NODE(&head->href_node)) {
216 mutex_unlock(&head->mutex);
217 btrfs_put_delayed_ref_head(head);
220 btrfs_put_delayed_ref_head(head);
224 static inline void drop_delayed_ref(struct btrfs_trans_handle *trans,
225 struct btrfs_delayed_ref_root *delayed_refs,
226 struct btrfs_delayed_ref_head *head,
227 struct btrfs_delayed_ref_node *ref)
229 lockdep_assert_held(&head->lock);
230 rb_erase(&ref->ref_node, &head->ref_tree);
231 RB_CLEAR_NODE(&ref->ref_node);
232 if (!list_empty(&ref->add_list))
233 list_del(&ref->add_list);
235 btrfs_put_delayed_ref(ref);
236 atomic_dec(&delayed_refs->num_entries);
239 static bool merge_ref(struct btrfs_trans_handle *trans,
240 struct btrfs_delayed_ref_root *delayed_refs,
241 struct btrfs_delayed_ref_head *head,
242 struct btrfs_delayed_ref_node *ref,
245 struct btrfs_delayed_ref_node *next;
246 struct rb_node *node = rb_next(&ref->ref_node);
249 while (!done && node) {
252 next = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
253 node = rb_next(node);
254 if (seq && next->seq >= seq)
256 if (comp_refs(ref, next, false))
259 if (ref->action == next->action) {
262 if (ref->ref_mod < next->ref_mod) {
266 mod = -next->ref_mod;
269 drop_delayed_ref(trans, delayed_refs, head, next);
271 if (ref->ref_mod == 0) {
272 drop_delayed_ref(trans, delayed_refs, head, ref);
276 * Can't have multiples of the same ref on a tree block.
278 WARN_ON(ref->type == BTRFS_TREE_BLOCK_REF_KEY ||
279 ref->type == BTRFS_SHARED_BLOCK_REF_KEY);
286 void btrfs_merge_delayed_refs(struct btrfs_trans_handle *trans,
287 struct btrfs_delayed_ref_root *delayed_refs,
288 struct btrfs_delayed_ref_head *head)
290 struct btrfs_fs_info *fs_info = trans->fs_info;
291 struct btrfs_delayed_ref_node *ref;
292 struct rb_node *node;
295 lockdep_assert_held(&head->lock);
297 if (RB_EMPTY_ROOT(&head->ref_tree))
300 /* We don't have too many refs to merge for data. */
304 read_lock(&fs_info->tree_mod_log_lock);
305 if (!list_empty(&fs_info->tree_mod_seq_list)) {
306 struct seq_list *elem;
308 elem = list_first_entry(&fs_info->tree_mod_seq_list,
309 struct seq_list, list);
312 read_unlock(&fs_info->tree_mod_log_lock);
315 for (node = rb_first(&head->ref_tree); node; node = rb_next(node)) {
316 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
317 if (seq && ref->seq >= seq)
319 if (merge_ref(trans, delayed_refs, head, ref, seq))
324 int btrfs_check_delayed_seq(struct btrfs_fs_info *fs_info, u64 seq)
326 struct seq_list *elem;
329 read_lock(&fs_info->tree_mod_log_lock);
330 if (!list_empty(&fs_info->tree_mod_seq_list)) {
331 elem = list_first_entry(&fs_info->tree_mod_seq_list,
332 struct seq_list, list);
333 if (seq >= elem->seq) {
335 "holding back delayed_ref %#x.%x, lowest is %#x.%x",
336 (u32)(seq >> 32), (u32)seq,
337 (u32)(elem->seq >> 32), (u32)elem->seq);
342 read_unlock(&fs_info->tree_mod_log_lock);
346 struct btrfs_delayed_ref_head *
347 btrfs_select_ref_head(struct btrfs_trans_handle *trans)
349 struct btrfs_delayed_ref_root *delayed_refs;
350 struct btrfs_delayed_ref_head *head;
354 delayed_refs = &trans->transaction->delayed_refs;
357 start = delayed_refs->run_delayed_start;
358 head = find_ref_head(&delayed_refs->href_root, start, 1);
359 if (!head && !loop) {
360 delayed_refs->run_delayed_start = 0;
363 head = find_ref_head(&delayed_refs->href_root, start, 1);
366 } else if (!head && loop) {
370 while (head->processing) {
371 struct rb_node *node;
373 node = rb_next(&head->href_node);
377 delayed_refs->run_delayed_start = 0;
382 head = rb_entry(node, struct btrfs_delayed_ref_head,
386 head->processing = 1;
387 WARN_ON(delayed_refs->num_heads_ready == 0);
388 delayed_refs->num_heads_ready--;
389 delayed_refs->run_delayed_start = head->bytenr +
395 * Helper to insert the ref_node to the tail or merge with tail.
397 * Return 0 for insert.
398 * Return >0 for merge.
400 static int insert_delayed_ref(struct btrfs_trans_handle *trans,
401 struct btrfs_delayed_ref_root *root,
402 struct btrfs_delayed_ref_head *href,
403 struct btrfs_delayed_ref_node *ref)
405 struct btrfs_delayed_ref_node *exist;
409 spin_lock(&href->lock);
410 exist = tree_insert(&href->ref_tree, ref);
414 /* Now we are sure we can merge */
416 if (exist->action == ref->action) {
419 /* Need to change action */
420 if (exist->ref_mod < ref->ref_mod) {
421 exist->action = ref->action;
422 mod = -exist->ref_mod;
423 exist->ref_mod = ref->ref_mod;
424 if (ref->action == BTRFS_ADD_DELAYED_REF)
425 list_add_tail(&exist->add_list,
426 &href->ref_add_list);
427 else if (ref->action == BTRFS_DROP_DELAYED_REF) {
428 ASSERT(!list_empty(&exist->add_list));
429 list_del(&exist->add_list);
436 exist->ref_mod += mod;
438 /* remove existing tail if its ref_mod is zero */
439 if (exist->ref_mod == 0)
440 drop_delayed_ref(trans, root, href, exist);
441 spin_unlock(&href->lock);
444 if (ref->action == BTRFS_ADD_DELAYED_REF)
445 list_add_tail(&ref->add_list, &href->ref_add_list);
446 atomic_inc(&root->num_entries);
447 spin_unlock(&href->lock);
452 * helper function to update the accounting in the head ref
453 * existing and update must have the same bytenr
456 update_existing_head_ref(struct btrfs_delayed_ref_root *delayed_refs,
457 struct btrfs_delayed_ref_head *existing,
458 struct btrfs_delayed_ref_head *update,
459 int *old_ref_mod_ret)
463 BUG_ON(existing->is_data != update->is_data);
465 spin_lock(&existing->lock);
466 if (update->must_insert_reserved) {
467 /* if the extent was freed and then
468 * reallocated before the delayed ref
469 * entries were processed, we can end up
470 * with an existing head ref without
471 * the must_insert_reserved flag set.
474 existing->must_insert_reserved = update->must_insert_reserved;
477 * update the num_bytes so we make sure the accounting
480 existing->num_bytes = update->num_bytes;
484 if (update->extent_op) {
485 if (!existing->extent_op) {
486 existing->extent_op = update->extent_op;
488 if (update->extent_op->update_key) {
489 memcpy(&existing->extent_op->key,
490 &update->extent_op->key,
491 sizeof(update->extent_op->key));
492 existing->extent_op->update_key = true;
494 if (update->extent_op->update_flags) {
495 existing->extent_op->flags_to_set |=
496 update->extent_op->flags_to_set;
497 existing->extent_op->update_flags = true;
499 btrfs_free_delayed_extent_op(update->extent_op);
503 * update the reference mod on the head to reflect this new operation,
504 * only need the lock for this case cause we could be processing it
505 * currently, for refs we just added we know we're a-ok.
507 old_ref_mod = existing->total_ref_mod;
509 *old_ref_mod_ret = old_ref_mod;
510 existing->ref_mod += update->ref_mod;
511 existing->total_ref_mod += update->ref_mod;
514 * If we are going to from a positive ref mod to a negative or vice
515 * versa we need to make sure to adjust pending_csums accordingly.
517 if (existing->is_data) {
518 if (existing->total_ref_mod >= 0 && old_ref_mod < 0)
519 delayed_refs->pending_csums -= existing->num_bytes;
520 if (existing->total_ref_mod < 0 && old_ref_mod >= 0)
521 delayed_refs->pending_csums += existing->num_bytes;
523 spin_unlock(&existing->lock);
526 static void init_delayed_ref_head(struct btrfs_delayed_ref_head *head_ref,
527 struct btrfs_qgroup_extent_record *qrecord,
528 u64 bytenr, u64 num_bytes, u64 ref_root,
529 u64 reserved, int action, bool is_data,
533 int must_insert_reserved = 0;
535 /* If reserved is provided, it must be a data extent. */
536 BUG_ON(!is_data && reserved);
539 * The head node stores the sum of all the mods, so dropping a ref
540 * should drop the sum in the head node by one.
542 if (action == BTRFS_UPDATE_DELAYED_HEAD)
544 else if (action == BTRFS_DROP_DELAYED_REF)
548 * BTRFS_ADD_DELAYED_EXTENT means that we need to update the reserved
549 * accounting when the extent is finally added, or if a later
550 * modification deletes the delayed ref without ever inserting the
551 * extent into the extent allocation tree. ref->must_insert_reserved
552 * is the flag used to record that accounting mods are required.
554 * Once we record must_insert_reserved, switch the action to
555 * BTRFS_ADD_DELAYED_REF because other special casing is not required.
557 if (action == BTRFS_ADD_DELAYED_EXTENT)
558 must_insert_reserved = 1;
560 must_insert_reserved = 0;
562 refcount_set(&head_ref->refs, 1);
563 head_ref->bytenr = bytenr;
564 head_ref->num_bytes = num_bytes;
565 head_ref->ref_mod = count_mod;
566 head_ref->must_insert_reserved = must_insert_reserved;
567 head_ref->is_data = is_data;
568 head_ref->is_system = is_system;
569 head_ref->ref_tree = RB_ROOT;
570 INIT_LIST_HEAD(&head_ref->ref_add_list);
571 RB_CLEAR_NODE(&head_ref->href_node);
572 head_ref->processing = 0;
573 head_ref->total_ref_mod = count_mod;
574 head_ref->qgroup_reserved = 0;
575 head_ref->qgroup_ref_root = 0;
576 spin_lock_init(&head_ref->lock);
577 mutex_init(&head_ref->mutex);
580 if (ref_root && reserved) {
581 head_ref->qgroup_ref_root = ref_root;
582 head_ref->qgroup_reserved = reserved;
585 qrecord->bytenr = bytenr;
586 qrecord->num_bytes = num_bytes;
587 qrecord->old_roots = NULL;
592 * helper function to actually insert a head node into the rbtree.
593 * this does all the dirty work in terms of maintaining the correct
594 * overall modification count.
596 static noinline struct btrfs_delayed_ref_head *
597 add_delayed_ref_head(struct btrfs_trans_handle *trans,
598 struct btrfs_delayed_ref_head *head_ref,
599 struct btrfs_qgroup_extent_record *qrecord,
600 int action, int *qrecord_inserted_ret,
601 int *old_ref_mod, int *new_ref_mod)
603 struct btrfs_delayed_ref_head *existing;
604 struct btrfs_delayed_ref_root *delayed_refs;
605 int qrecord_inserted = 0;
607 delayed_refs = &trans->transaction->delayed_refs;
609 /* Record qgroup extent info if provided */
611 if (btrfs_qgroup_trace_extent_nolock(trans->fs_info,
612 delayed_refs, qrecord))
615 qrecord_inserted = 1;
618 trace_add_delayed_ref_head(trans->fs_info, head_ref, action);
620 existing = htree_insert(&delayed_refs->href_root,
621 &head_ref->href_node);
623 WARN_ON(qrecord && head_ref->qgroup_ref_root
624 && head_ref->qgroup_reserved
625 && existing->qgroup_ref_root
626 && existing->qgroup_reserved);
627 update_existing_head_ref(delayed_refs, existing, head_ref,
630 * we've updated the existing ref, free the newly
633 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
638 if (head_ref->is_data && head_ref->ref_mod < 0)
639 delayed_refs->pending_csums += head_ref->num_bytes;
640 delayed_refs->num_heads++;
641 delayed_refs->num_heads_ready++;
642 atomic_inc(&delayed_refs->num_entries);
643 trans->delayed_ref_updates++;
645 if (qrecord_inserted_ret)
646 *qrecord_inserted_ret = qrecord_inserted;
648 *new_ref_mod = head_ref->total_ref_mod;
654 * init_delayed_ref_common - Initialize the structure which represents a
655 * modification to a an extent.
657 * @fs_info: Internal to the mounted filesystem mount structure.
659 * @ref: The structure which is going to be initialized.
661 * @bytenr: The logical address of the extent for which a modification is
662 * going to be recorded.
664 * @num_bytes: Size of the extent whose modification is being recorded.
666 * @ref_root: The id of the root where this modification has originated, this
667 * can be either one of the well-known metadata trees or the
668 * subvolume id which references this extent.
670 * @action: Can be one of BTRFS_ADD_DELAYED_REF/BTRFS_DROP_DELAYED_REF or
671 * BTRFS_ADD_DELAYED_EXTENT
673 * @ref_type: Holds the type of the extent which is being recorded, can be
674 * one of BTRFS_SHARED_BLOCK_REF_KEY/BTRFS_TREE_BLOCK_REF_KEY
675 * when recording a metadata extent or BTRFS_SHARED_DATA_REF_KEY/
676 * BTRFS_EXTENT_DATA_REF_KEY when recording data extent
678 static void init_delayed_ref_common(struct btrfs_fs_info *fs_info,
679 struct btrfs_delayed_ref_node *ref,
680 u64 bytenr, u64 num_bytes, u64 ref_root,
681 int action, u8 ref_type)
685 if (action == BTRFS_ADD_DELAYED_EXTENT)
686 action = BTRFS_ADD_DELAYED_REF;
688 if (is_fstree(ref_root))
689 seq = atomic64_read(&fs_info->tree_mod_seq);
691 refcount_set(&ref->refs, 1);
692 ref->bytenr = bytenr;
693 ref->num_bytes = num_bytes;
695 ref->action = action;
699 ref->type = ref_type;
700 RB_CLEAR_NODE(&ref->ref_node);
701 INIT_LIST_HEAD(&ref->add_list);
705 * add a delayed tree ref. This does all of the accounting required
706 * to make sure the delayed ref is eventually processed before this
707 * transaction commits.
709 int btrfs_add_delayed_tree_ref(struct btrfs_trans_handle *trans,
710 u64 bytenr, u64 num_bytes, u64 parent,
711 u64 ref_root, int level, int action,
712 struct btrfs_delayed_extent_op *extent_op,
713 int *old_ref_mod, int *new_ref_mod)
715 struct btrfs_fs_info *fs_info = trans->fs_info;
716 struct btrfs_delayed_tree_ref *ref;
717 struct btrfs_delayed_ref_head *head_ref;
718 struct btrfs_delayed_ref_root *delayed_refs;
719 struct btrfs_qgroup_extent_record *record = NULL;
720 int qrecord_inserted;
721 bool is_system = (ref_root == BTRFS_CHUNK_TREE_OBJECTID);
725 BUG_ON(extent_op && extent_op->is_data);
726 ref = kmem_cache_alloc(btrfs_delayed_tree_ref_cachep, GFP_NOFS);
730 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
732 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
736 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
737 is_fstree(ref_root)) {
738 record = kmalloc(sizeof(*record), GFP_NOFS);
740 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
741 kmem_cache_free(btrfs_delayed_ref_head_cachep, head_ref);
747 ref_type = BTRFS_SHARED_BLOCK_REF_KEY;
749 ref_type = BTRFS_TREE_BLOCK_REF_KEY;
751 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
752 ref_root, action, ref_type);
753 ref->root = ref_root;
754 ref->parent = parent;
757 init_delayed_ref_head(head_ref, record, bytenr, num_bytes,
758 ref_root, 0, action, false, is_system);
759 head_ref->extent_op = extent_op;
761 delayed_refs = &trans->transaction->delayed_refs;
762 spin_lock(&delayed_refs->lock);
765 * insert both the head node and the new ref without dropping
768 head_ref = add_delayed_ref_head(trans, head_ref, record,
769 action, &qrecord_inserted,
770 old_ref_mod, new_ref_mod);
772 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
773 spin_unlock(&delayed_refs->lock);
775 trace_add_delayed_tree_ref(fs_info, &ref->node, ref,
776 action == BTRFS_ADD_DELAYED_EXTENT ?
777 BTRFS_ADD_DELAYED_REF : action);
779 kmem_cache_free(btrfs_delayed_tree_ref_cachep, ref);
781 if (qrecord_inserted)
782 btrfs_qgroup_trace_extent_post(fs_info, record);
788 * add a delayed data ref. it's similar to btrfs_add_delayed_tree_ref.
790 int btrfs_add_delayed_data_ref(struct btrfs_trans_handle *trans,
791 u64 bytenr, u64 num_bytes,
792 u64 parent, u64 ref_root,
793 u64 owner, u64 offset, u64 reserved, int action,
794 int *old_ref_mod, int *new_ref_mod)
796 struct btrfs_fs_info *fs_info = trans->fs_info;
797 struct btrfs_delayed_data_ref *ref;
798 struct btrfs_delayed_ref_head *head_ref;
799 struct btrfs_delayed_ref_root *delayed_refs;
800 struct btrfs_qgroup_extent_record *record = NULL;
801 int qrecord_inserted;
805 ref = kmem_cache_alloc(btrfs_delayed_data_ref_cachep, GFP_NOFS);
810 ref_type = BTRFS_SHARED_DATA_REF_KEY;
812 ref_type = BTRFS_EXTENT_DATA_REF_KEY;
813 init_delayed_ref_common(fs_info, &ref->node, bytenr, num_bytes,
814 ref_root, action, ref_type);
815 ref->root = ref_root;
816 ref->parent = parent;
817 ref->objectid = owner;
818 ref->offset = offset;
821 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
823 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
827 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags) &&
828 is_fstree(ref_root)) {
829 record = kmalloc(sizeof(*record), GFP_NOFS);
831 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
832 kmem_cache_free(btrfs_delayed_ref_head_cachep,
838 init_delayed_ref_head(head_ref, record, bytenr, num_bytes, ref_root,
839 reserved, action, true, false);
840 head_ref->extent_op = NULL;
842 delayed_refs = &trans->transaction->delayed_refs;
843 spin_lock(&delayed_refs->lock);
846 * insert both the head node and the new ref without dropping
849 head_ref = add_delayed_ref_head(trans, head_ref, record,
850 action, &qrecord_inserted,
851 old_ref_mod, new_ref_mod);
853 ret = insert_delayed_ref(trans, delayed_refs, head_ref, &ref->node);
854 spin_unlock(&delayed_refs->lock);
856 trace_add_delayed_data_ref(trans->fs_info, &ref->node, ref,
857 action == BTRFS_ADD_DELAYED_EXTENT ?
858 BTRFS_ADD_DELAYED_REF : action);
860 kmem_cache_free(btrfs_delayed_data_ref_cachep, ref);
863 if (qrecord_inserted)
864 return btrfs_qgroup_trace_extent_post(fs_info, record);
868 int btrfs_add_delayed_extent_op(struct btrfs_fs_info *fs_info,
869 struct btrfs_trans_handle *trans,
870 u64 bytenr, u64 num_bytes,
871 struct btrfs_delayed_extent_op *extent_op)
873 struct btrfs_delayed_ref_head *head_ref;
874 struct btrfs_delayed_ref_root *delayed_refs;
876 head_ref = kmem_cache_alloc(btrfs_delayed_ref_head_cachep, GFP_NOFS);
880 init_delayed_ref_head(head_ref, NULL, bytenr, num_bytes, 0, 0,
881 BTRFS_UPDATE_DELAYED_HEAD, extent_op->is_data,
883 head_ref->extent_op = extent_op;
885 delayed_refs = &trans->transaction->delayed_refs;
886 spin_lock(&delayed_refs->lock);
888 add_delayed_ref_head(trans, head_ref, NULL, BTRFS_UPDATE_DELAYED_HEAD,
891 spin_unlock(&delayed_refs->lock);
896 * this does a simple search for the head node for a given extent.
897 * It must be called with the delayed ref spinlock held, and it returns
898 * the head node if any where found, or NULL if not.
900 struct btrfs_delayed_ref_head *
901 btrfs_find_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs, u64 bytenr)
903 return find_ref_head(&delayed_refs->href_root, bytenr, 0);
906 void __cold btrfs_delayed_ref_exit(void)
908 kmem_cache_destroy(btrfs_delayed_ref_head_cachep);
909 kmem_cache_destroy(btrfs_delayed_tree_ref_cachep);
910 kmem_cache_destroy(btrfs_delayed_data_ref_cachep);
911 kmem_cache_destroy(btrfs_delayed_extent_op_cachep);
914 int __init btrfs_delayed_ref_init(void)
916 btrfs_delayed_ref_head_cachep = kmem_cache_create(
917 "btrfs_delayed_ref_head",
918 sizeof(struct btrfs_delayed_ref_head), 0,
919 SLAB_MEM_SPREAD, NULL);
920 if (!btrfs_delayed_ref_head_cachep)
923 btrfs_delayed_tree_ref_cachep = kmem_cache_create(
924 "btrfs_delayed_tree_ref",
925 sizeof(struct btrfs_delayed_tree_ref), 0,
926 SLAB_MEM_SPREAD, NULL);
927 if (!btrfs_delayed_tree_ref_cachep)
930 btrfs_delayed_data_ref_cachep = kmem_cache_create(
931 "btrfs_delayed_data_ref",
932 sizeof(struct btrfs_delayed_data_ref), 0,
933 SLAB_MEM_SPREAD, NULL);
934 if (!btrfs_delayed_data_ref_cachep)
937 btrfs_delayed_extent_op_cachep = kmem_cache_create(
938 "btrfs_delayed_extent_op",
939 sizeof(struct btrfs_delayed_extent_op), 0,
940 SLAB_MEM_SPREAD, NULL);
941 if (!btrfs_delayed_extent_op_cachep)
946 btrfs_delayed_ref_exit();