Re: [Qemu-devel] [PATCH v2] qom: Introduce object_class_get_list()

2012-03-14 Thread Anthony Liguori
On 02/25/2012 04:07 PM, Andreas Färber wrote: This function allows to obtain a singly-linked list of classes, which can be sorted by the caller. Signed-off-by: Andreas Färber Cc: Anthony Liguori Applied. Thanks. Regards, Anthony Liguori --- v1 -> v2: * Instead of object_class_foreach

Re: [Qemu-devel] [PATCH v2] qom: Introduce object_class_get_list()

2012-03-09 Thread Andreas Färber
Am 07.03.2012 11:21, schrieb Andreas Färber: > Am 25.02.2012 23:07, schrieb Andreas Färber: >> This function allows to obtain a singly-linked list of classes, which >> can be sorted by the caller. >> >> Signed-off-by: Andreas Färber >> Cc: Anthony Liguori > > Ping? You requested me to do it via

Re: [Qemu-devel] [PATCH v2] qom: Introduce object_class_get_list()

2012-03-07 Thread Andreas Färber
Am 25.02.2012 23:07, schrieb Andreas Färber: > This function allows to obtain a singly-linked list of classes, which > can be sorted by the caller. > > Signed-off-by: Andreas Färber > Cc: Anthony Liguori Ping? You requested me to do it via GSList instead of GTree, and the qom-cpu branch has bee

Re: [Qemu-devel] [PATCH v2] qom: Introduce object_class_get_list()

2012-02-25 Thread Andreas Färber
Am 25.02.2012 23:07, schrieb Andreas Färber: > This function allows to obtain a singly-linked list of classes, which > can be sorted by the caller. > > Signed-off-by: Andreas Färber > Cc: Anthony Liguori > --- > v1 -> v2: > * Instead of object_class_foreach() using a GCompareFunc with a GTree

[Qemu-devel] [PATCH v2] qom: Introduce object_class_get_list()

2012-02-25 Thread Andreas Färber
This function allows to obtain a singly-linked list of classes, which can be sorted by the caller. Signed-off-by: Andreas Färber Cc: Anthony Liguori --- v1 -> v2: * Instead of object_class_foreach() using a GCompareFunc with a GTree internally, return a GSList so that the caller can sort h