mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
migration: Simplify get_qlist
Instead of inserting read elements at the head and then reversing the list, it is simpler to add each element after the previous one. Introduce QLIST_RAW_INSERT_AFTER helper and use it in get_qlist(). Signed-off-by: Eric Auger <eric.auger@redhat.com> Suggested-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
d32ca5ad79
commit
a085664f21
2 changed files with 13 additions and 16 deletions
|
@ -879,7 +879,7 @@ static int get_qlist(QEMUFile *f, void *pv, size_t unused_size,
|
|||
/* offset of the QLIST entry in a QLIST element */
|
||||
size_t entry_offset = field->start;
|
||||
int version_id = field->version_id;
|
||||
void *elm;
|
||||
void *elm, *prev = NULL;
|
||||
|
||||
trace_get_qlist(field->name, vmsd->name, vmsd->version_id);
|
||||
if (version_id > vmsd->version_id) {
|
||||
|
@ -900,9 +900,13 @@ static int get_qlist(QEMUFile *f, void *pv, size_t unused_size,
|
|||
g_free(elm);
|
||||
return ret;
|
||||
}
|
||||
QLIST_RAW_INSERT_HEAD(pv, elm, entry_offset);
|
||||
if (!prev) {
|
||||
QLIST_RAW_INSERT_HEAD(pv, elm, entry_offset);
|
||||
} else {
|
||||
QLIST_RAW_INSERT_AFTER(pv, prev, elm, entry_offset);
|
||||
}
|
||||
prev = elm;
|
||||
}
|
||||
QLIST_RAW_REVERSE(pv, elm, entry_offset);
|
||||
trace_get_qlist_end(field->name, vmsd->name);
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue