Re: [PATCH v4 3/5] qapi: Introduce QAPI_LIST_APPEND

2021-01-14 Thread Markus Armbruster
Eric Blake writes: > Similar to the existing QAPI_LIST_PREPEND, but designed for use where > we want to preserve insertion order. Callers will be added in > upcoming patches. Note the difference in signature: PREPEND takes > List*, APPEND takes List**. > > Signed-off-by: Eric Blake > Reviewed-

[PATCH v4 3/5] qapi: Introduce QAPI_LIST_APPEND

2021-01-13 Thread Eric Blake
Similar to the existing QAPI_LIST_PREPEND, but designed for use where we want to preserve insertion order. Callers will be added in upcoming patches. Note the difference in signature: PREPEND takes List*, APPEND takes List**. Signed-off-by: Eric Blake Reviewed-by: Vladimir Sementsov-Ogievskiy