From: Qu Wenruo <quwen...@cn.fujitsu.com>

For in-band dedupe, btrfs needs to increase data ref with delayed_ref
locked, so add a new function btrfs_add_delayed_data_ref_lock() to
increase extent ref with delayed_refs already locked.

Signed-off-by: Qu Wenruo <quwen...@cn.fujitsu.com>
Reviewed-by: Josef Bacik <jba...@fb.com>
Signed-off-by: Lu Fengqi <lufq.f...@cn.fujitsu.com>
---
 fs/btrfs/delayed-ref.c | 35 +++++++++++++++++++++++++++--------
 fs/btrfs/delayed-ref.h | 10 ++++++++++
 2 files changed, 37 insertions(+), 8 deletions(-)

diff --git a/fs/btrfs/delayed-ref.c b/fs/btrfs/delayed-ref.c
index 93ffa898df6d..19110dd19ac9 100644
--- a/fs/btrfs/delayed-ref.c
+++ b/fs/btrfs/delayed-ref.c
@@ -843,6 +843,29 @@ int btrfs_add_delayed_tree_ref(struct btrfs_fs_info 
*fs_info,
 }
 
 /*
+ * Do real delayed data ref insert.
+ * Caller must hold delayed_refs->lock and allocation memory
+ * for dref,head_ref and record.
+ */
+void btrfs_add_delayed_data_ref_locked(struct btrfs_fs_info *fs_info,
+                       struct btrfs_trans_handle *trans,
+                       struct btrfs_delayed_data_ref *dref,
+                       struct btrfs_delayed_ref_head *head_ref,
+                       struct btrfs_qgroup_extent_record *qrecord,
+                       u64 bytenr, u64 num_bytes, u64 parent, u64 ref_root,
+                       u64 owner, u64 offset, u64 reserved, int action,
+                       int *qrecord_inserted_ret, int *old_ref_mod,
+                       int *new_ref_mod)
+{
+       head_ref = add_delayed_ref_head(fs_info, trans, &head_ref->node,
+                       qrecord, bytenr, num_bytes, ref_root, reserved,
+                       action, 1, qrecord_inserted_ret, old_ref_mod,
+                       new_ref_mod);
+       add_delayed_data_ref(fs_info, trans, head_ref, &dref->node, bytenr,
+                       num_bytes, parent, ref_root, owner, offset, action);
+}
+
+/*
  * add a delayed data ref. it's similar to btrfs_add_delayed_tree_ref.
  */
 int btrfs_add_delayed_data_ref(struct btrfs_fs_info *fs_info,
@@ -888,14 +911,10 @@ int btrfs_add_delayed_data_ref(struct btrfs_fs_info 
*fs_info,
         * insert both the head node and the new ref without dropping
         * the spin lock
         */
-       head_ref = add_delayed_ref_head(fs_info, trans, &head_ref->node, record,
-                                       bytenr, num_bytes, ref_root, reserved,
-                                       action, 1, &qrecord_inserted,
-                                       old_ref_mod, new_ref_mod);
-
-       add_delayed_data_ref(fs_info, trans, head_ref, &ref->node, bytenr,
-                                  num_bytes, parent, ref_root, owner, offset,
-                                  action);
+       btrfs_add_delayed_data_ref_locked(fs_info, trans, ref, head_ref, record,
+                       bytenr, num_bytes, parent, ref_root, owner, offset,
+                       reserved, action, &qrecord_inserted, old_ref_mod,
+                       new_ref_mod);
        spin_unlock(&delayed_refs->lock);
 
        if (qrecord_inserted)
diff --git a/fs/btrfs/delayed-ref.h b/fs/btrfs/delayed-ref.h
index ce88e4ac5276..dc9761ec139a 100644
--- a/fs/btrfs/delayed-ref.h
+++ b/fs/btrfs/delayed-ref.h
@@ -243,12 +243,22 @@ static inline void btrfs_put_delayed_ref(struct 
btrfs_delayed_ref_node *ref)
        }
 }
 
+struct btrfs_qgroup_extent_record;
 int btrfs_add_delayed_tree_ref(struct btrfs_fs_info *fs_info,
                               struct btrfs_trans_handle *trans,
                               u64 bytenr, u64 num_bytes, u64 parent,
                               u64 ref_root, int level, int action,
                               struct btrfs_delayed_extent_op *extent_op,
                               int *old_ref_mod, int *new_ref_mod);
+void btrfs_add_delayed_data_ref_locked(struct btrfs_fs_info *fs_info,
+                       struct btrfs_trans_handle *trans,
+                       struct btrfs_delayed_data_ref *dref,
+                       struct btrfs_delayed_ref_head *head_ref,
+                       struct btrfs_qgroup_extent_record *qrecord,
+                       u64 bytenr, u64 num_bytes, u64 parent, u64 ref_root,
+                       u64 owner, u64 offset, u64 reserved, int action,
+                       int *qrecord_inserted_ret, int *old_ref_mod,
+                       int *new_ref_mod);
 int btrfs_add_delayed_data_ref(struct btrfs_fs_info *fs_info,
                               struct btrfs_trans_handle *trans,
                               u64 bytenr, u64 num_bytes,
-- 
2.13.2



--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to