Lines Matching refs:ref2
43 static int comp_tree_refs(struct btrfs_delayed_tree_ref *ref2, in comp_tree_refs() argument
47 if (ref1->root < ref2->root) in comp_tree_refs()
49 if (ref1->root > ref2->root) in comp_tree_refs()
52 if (ref1->parent < ref2->parent) in comp_tree_refs()
54 if (ref1->parent > ref2->parent) in comp_tree_refs()
63 static int comp_data_refs(struct btrfs_delayed_data_ref *ref2, in comp_data_refs() argument
67 if (ref1->root < ref2->root) in comp_data_refs()
69 if (ref1->root > ref2->root) in comp_data_refs()
71 if (ref1->objectid < ref2->objectid) in comp_data_refs()
73 if (ref1->objectid > ref2->objectid) in comp_data_refs()
75 if (ref1->offset < ref2->offset) in comp_data_refs()
77 if (ref1->offset > ref2->offset) in comp_data_refs()
80 if (ref1->parent < ref2->parent) in comp_data_refs()
82 if (ref1->parent > ref2->parent) in comp_data_refs()