Re: [Qemu-devel] [PATCH v2 1/7] apic: add global apic_get_class()

2016-09-29 Thread Radim Krčmář
2016-09-29 11:53-0300, Eduardo Habkost: > On Thu, Sep 29, 2016 at 01:23:23PM +0200, Radim Krčmář wrote: >> Every configuration has only up to one APIC class and we'll be extending >> the class with a function that can be called without an instanced >> object, so a direct access to the class is

Re: [Qemu-devel] [PATCH v2 1/7] apic: add global apic_get_class()

2016-09-29 Thread Eduardo Habkost
On Thu, Sep 29, 2016 at 01:23:23PM +0200, Radim Krčmář wrote: > Every configuration has only up to one APIC class and we'll be extending > the class with a function that can be called without an instanced > object, so a direct access to the class is convenient. > > Signed-off-by: Radim Krčmář

[Qemu-devel] [PATCH v2 1/7] apic: add global apic_get_class()

2016-09-29 Thread Radim Krčmář
Every configuration has only up to one APIC class and we'll be extending the class with a function that can be called without an instanced object, so a direct access to the class is convenient. Signed-off-by: Radim Krčmář --- v2: assert() instead of error_report() and exit()