Re: [PATCH v2 02/13] qom: New object_property_add_new_container()

2024-11-22 Thread Markus Armbruster
Peter Xu writes: > To move towards explicit creations of containers, starting that by > providing a helper for creating container objects. > > Signed-off-by: Peter Xu Reviewed-by: Markus Armbruster

Re: [PATCH v2 02/13] qom: New object_property_add_new_container()

2024-11-21 Thread Philippe Mathieu-Daudé
On 21/11/24 20:21, Peter Xu wrote: To move towards explicit creations of containers, starting that by providing a helper for creating container objects. Signed-off-by: Peter Xu --- include/qom/object.h | 12 qom/container.c | 14 +++--- 2 files changed, 23 insertio

[PATCH v2 02/13] qom: New object_property_add_new_container()

2024-11-21 Thread Peter Xu
To move towards explicit creations of containers, starting that by providing a helper for creating container objects. Signed-off-by: Peter Xu --- include/qom/object.h | 12 qom/container.c | 14 +++--- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/incl