Re: [PATCH 01/22] target/i386: Only realize existing APIC device

2023-11-28 Thread Igor Mammedov
On Mon, 18 Sep 2023 18:02:34 +0200 Philippe Mathieu-Daudé wrote: > APIC state is created under a certain condition, > use the same condition to realize it. > Having a NULL APIC state is a bug: use assert(). > > Signed-off-by: Philippe Mathieu-Daudé > --- > target/i386/cpu-sysemu.c | 9 +++-

Re: [PATCH 01/22] target/i386: Only realize existing APIC device

2023-09-29 Thread Richard Henderson
On 9/18/23 09:02, Philippe Mathieu-Daudé wrote: APIC state is created under a certain condition, use the same condition to realize it. Having a NULL APIC state is a bug: use assert(). Signed-off-by: Philippe Mathieu-Daudé --- target/i386/cpu-sysemu.c | 9 +++-- target/i386/cpu.c|

[PATCH 01/22] target/i386: Only realize existing APIC device

2023-09-18 Thread Philippe Mathieu-Daudé
APIC state is created under a certain condition, use the same condition to realize it. Having a NULL APIC state is a bug: use assert(). Signed-off-by: Philippe Mathieu-Daudé --- target/i386/cpu-sysemu.c | 9 +++-- target/i386/cpu.c| 8 +--- 2 files changed, 8 insertions(+), 9 del