mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-04 23:29:20 +00:00
btrfs-progs: backref: add list_first_pref helper
Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3ae36b3b0f
commit
e520de0dbb
11
backref.c
11
backref.c
@ -130,6 +130,11 @@ struct __prelim_ref {
|
|||||||
u64 wanted_disk_byte;
|
u64 wanted_disk_byte;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct __prelim_ref *list_first_pref(struct list_head *head)
|
||||||
|
{
|
||||||
|
return list_first_entry(head, struct __prelim_ref, list);
|
||||||
|
}
|
||||||
|
|
||||||
struct pref_state {
|
struct pref_state {
|
||||||
struct list_head pending;
|
struct list_head pending;
|
||||||
};
|
};
|
||||||
@ -803,8 +808,7 @@ static int find_parent_nodes(struct btrfs_trans_handle *trans,
|
|||||||
__merge_refs(&prefstate, 2);
|
__merge_refs(&prefstate, 2);
|
||||||
|
|
||||||
while (!list_empty(&prefstate.pending)) {
|
while (!list_empty(&prefstate.pending)) {
|
||||||
ref = list_first_entry(&prefstate.pending,
|
ref = list_first_pref(&prefstate.pending);
|
||||||
struct __prelim_ref, list);
|
|
||||||
WARN_ON(ref->count < 0);
|
WARN_ON(ref->count < 0);
|
||||||
if (roots && ref->count && ref->root_id && ref->parent == 0) {
|
if (roots && ref->count && ref->root_id && ref->parent == 0) {
|
||||||
/* no parent == root of tree */
|
/* no parent == root of tree */
|
||||||
@ -854,8 +858,7 @@ static int find_parent_nodes(struct btrfs_trans_handle *trans,
|
|||||||
out:
|
out:
|
||||||
btrfs_free_path(path);
|
btrfs_free_path(path);
|
||||||
while (!list_empty(&prefstate.pending)) {
|
while (!list_empty(&prefstate.pending)) {
|
||||||
ref = list_first_entry(&prefstate.pending,
|
ref = list_first_pref(&prefstate.pending);
|
||||||
struct __prelim_ref, list);
|
|
||||||
list_del(&ref->list);
|
list_del(&ref->list);
|
||||||
kfree(ref);
|
kfree(ref);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user