Commit 44cc2e38 authored by Josef Bacik's avatar Josef Bacik Committed by David Sterba

btrfs: stop referencing btrfs_delayed_data_ref directly

Now that most of our elements are inside of btrfs_delayed_ref_node
directly and we have helpers for the delayed_data_ref bits, go ahead and
remove all direct usage of btrfs_delayed_data_ref and use the helpers
where needed.
Reviewed-by: default avatarFilipe Manana <fdmanana@suse.com>
Signed-off-by: default avatarJosef Bacik <josef@toxicpanda.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent b4b5934a
...@@ -947,12 +947,9 @@ static int add_delayed_refs(const struct btrfs_fs_info *fs_info, ...@@ -947,12 +947,9 @@ static int add_delayed_refs(const struct btrfs_fs_info *fs_info,
} }
case BTRFS_EXTENT_DATA_REF_KEY: { case BTRFS_EXTENT_DATA_REF_KEY: {
/* NORMAL INDIRECT DATA backref */ /* NORMAL INDIRECT DATA backref */
struct btrfs_delayed_data_ref *ref; key.objectid = btrfs_delayed_ref_owner(node);
ref = btrfs_delayed_node_to_data_ref(node);
key.objectid = ref->objectid;
key.type = BTRFS_EXTENT_DATA_KEY; key.type = BTRFS_EXTENT_DATA_KEY;
key.offset = ref->offset; key.offset = btrfs_delayed_ref_offset(node);
/* /*
* If we have a share check context and a reference for * If we have a share check context and a reference for
......
...@@ -1543,11 +1543,9 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans, ...@@ -1543,11 +1543,9 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
bool insert_reserved) bool insert_reserved)
{ {
int ret = 0; int ret = 0;
struct btrfs_delayed_data_ref *ref;
u64 parent = 0; u64 parent = 0;
u64 flags = 0; u64 flags = 0;
ref = btrfs_delayed_node_to_data_ref(node);
trace_run_delayed_data_ref(trans->fs_info, node); trace_run_delayed_data_ref(trans->fs_info, node);
if (node->type == BTRFS_SHARED_DATA_REF_KEY) if (node->type == BTRFS_SHARED_DATA_REF_KEY)
...@@ -1562,6 +1560,8 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans, ...@@ -1562,6 +1560,8 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
.is_inc = true, .is_inc = true,
.generation = trans->transid, .generation = trans->transid,
}; };
u64 owner = btrfs_delayed_ref_owner(node);
u64 offset = btrfs_delayed_ref_offset(node);
if (extent_op) if (extent_op)
flags |= extent_op->flags_to_set; flags |= extent_op->flags_to_set;
...@@ -1571,9 +1571,9 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans, ...@@ -1571,9 +1571,9 @@ static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
key.offset = node->num_bytes; key.offset = node->num_bytes;
ret = alloc_reserved_file_extent(trans, parent, node->ref_root, ret = alloc_reserved_file_extent(trans, parent, node->ref_root,
flags, ref->objectid, flags, owner, offset, &key,
ref->offset, &key, node->ref_mod,
node->ref_mod, href->owning_root); href->owning_root);
free_head_ref_squota_rsv(trans->fs_info, href); free_head_ref_squota_rsv(trans->fs_info, href);
if (!ret) if (!ret)
ret = btrfs_record_squota_delta(trans->fs_info, &delta); ret = btrfs_record_squota_delta(trans->fs_info, &delta);
...@@ -2258,7 +2258,6 @@ static noinline int check_delayed_ref(struct btrfs_root *root, ...@@ -2258,7 +2258,6 @@ static noinline int check_delayed_ref(struct btrfs_root *root,
{ {
struct btrfs_delayed_ref_head *head; struct btrfs_delayed_ref_head *head;
struct btrfs_delayed_ref_node *ref; struct btrfs_delayed_ref_node *ref;
struct btrfs_delayed_data_ref *data_ref;
struct btrfs_delayed_ref_root *delayed_refs; struct btrfs_delayed_ref_root *delayed_refs;
struct btrfs_transaction *cur_trans; struct btrfs_transaction *cur_trans;
struct rb_node *node; struct rb_node *node;
...@@ -2312,6 +2311,9 @@ static noinline int check_delayed_ref(struct btrfs_root *root, ...@@ -2312,6 +2311,9 @@ static noinline int check_delayed_ref(struct btrfs_root *root,
*/ */
for (node = rb_first_cached(&head->ref_tree); node; for (node = rb_first_cached(&head->ref_tree); node;
node = rb_next(node)) { node = rb_next(node)) {
u64 ref_owner;
u64 ref_offset;
ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node); ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
/* If it's a shared ref we know a cross reference exists */ /* If it's a shared ref we know a cross reference exists */
if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
...@@ -2319,15 +2321,15 @@ static noinline int check_delayed_ref(struct btrfs_root *root, ...@@ -2319,15 +2321,15 @@ static noinline int check_delayed_ref(struct btrfs_root *root,
break; break;
} }
data_ref = btrfs_delayed_node_to_data_ref(ref); ref_owner = btrfs_delayed_ref_owner(ref);
ref_offset = btrfs_delayed_ref_offset(ref);
/* /*
* If our ref doesn't match the one we're currently looking at * If our ref doesn't match the one we're currently looking at
* then we have a cross reference. * then we have a cross reference.
*/ */
if (ref->ref_root != root->root_key.objectid || if (ref->ref_root != root->root_key.objectid ||
data_ref->objectid != objectid || ref_owner != objectid || ref_offset != offset) {
data_ref->offset != offset) {
ret = 1; ret = 1;
break; break;
} }
......
...@@ -17,7 +17,6 @@ struct btrfs_file_extent_item; ...@@ -17,7 +17,6 @@ struct btrfs_file_extent_item;
struct btrfs_ordered_extent; struct btrfs_ordered_extent;
struct btrfs_delayed_ref_node; struct btrfs_delayed_ref_node;
struct btrfs_delayed_tree_ref; struct btrfs_delayed_tree_ref;
struct btrfs_delayed_data_ref;
struct btrfs_delayed_ref_head; struct btrfs_delayed_ref_head;
struct btrfs_block_group; struct btrfs_block_group;
struct btrfs_free_cluster; struct btrfs_free_cluster;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment