Re: [Qemu-devel] [PATCH for-3.2 v5 15/19] qom: add object_class_get_class_data()

2018-12-12 Thread Marc-André Lureau
Hi On Tue, Dec 11, 2018 at 8:24 PM Igor Mammedov wrote: > > On Tue, 4 Dec 2018 18:20:19 +0400 > Marc-André Lureau wrote: > > > Add a simple function to retrieve the associated class data. > > > > Signed-off-by: Marc-André Lureau > > --- > > include/qom/object.h | 9 + > > qom/object.c

Re: [Qemu-devel] [PATCH for-3.2 v5 15/19] qom: add object_class_get_class_data()

2018-12-11 Thread Igor Mammedov
On Tue, 4 Dec 2018 18:20:19 +0400 Marc-André Lureau wrote: > Add a simple function to retrieve the associated class data. > > Signed-off-by: Marc-André Lureau > --- > include/qom/object.h | 9 + > qom/object.c | 5 + > 2 files changed, 14 insertions(+) > > diff --git a/in

[Qemu-devel] [PATCH for-3.2 v5 15/19] qom: add object_class_get_class_data()

2018-12-04 Thread Marc-André Lureau
Add a simple function to retrieve the associated class data. Signed-off-by: Marc-André Lureau --- include/qom/object.h | 9 + qom/object.c | 5 + 2 files changed, 14 insertions(+) diff --git a/include/qom/object.h b/include/qom/object.h index 5183c587f3..d5266405da 100644 --