Re: [PATCH v3] migration: Support QLIST migration

2019-10-18 Thread Auger Eric
Hi Juan, On 10/17/19 10:06 AM, Juan Quintela wrote: > Eric Auger wrote: >> Support QLIST migration using the same principle as QTAILQ: >> 94869d5c52 ("migration: migrate QTAILQ"). >> >> The VMSTATE_QLIST_V macro has the same proto as VMSTATE_QTAILQ_V. >> The change mainly resides in QLIST_RAW_INS

Re: [PATCH v3] migration: Support QLIST migration

2019-10-17 Thread Juan Quintela
Eric Auger wrote: > Support QLIST migration using the same principle as QTAILQ: > 94869d5c52 ("migration: migrate QTAILQ"). > > The VMSTATE_QLIST_V macro has the same proto as VMSTATE_QTAILQ_V. > The change mainly resides in QLIST_RAW_INSERT_TAIL implementation. > > Tests also are provided. > > Si

[PATCH v3] migration: Support QLIST migration

2019-10-15 Thread Eric Auger
Support QLIST migration using the same principle as QTAILQ: 94869d5c52 ("migration: migrate QTAILQ"). The VMSTATE_QLIST_V macro has the same proto as VMSTATE_QTAILQ_V. The change mainly resides in QLIST_RAW_INSERT_TAIL implementation. Tests also are provided. Signed-off-by: Eric Auger --- v2