Re: [PATCH V2] hw/intc: Handle software disabling of APIC correctly

2022-10-25 Thread Jay Khandkar
On Wed, Sep 07, 2022 at 11:14:11PM +0530, Jay Khandkar wrote: > When the local APIC is in a software disabled state, all local interrupt > sources must be masked and all attempts to unmask them should be > ignored. Currently, we don't do either. Fix this by handling it > correctly in apic_mem_write

[PATCH V2] hw/intc: Handle software disabling of APIC correctly

2022-09-07 Thread Jay Khandkar
When the local APIC is in a software disabled state, all local interrupt sources must be masked and all attempts to unmask them should be ignored. Currently, we don't do either. Fix this by handling it correctly in apic_mem_write(). Signed-off-by: Jay Khandkar --- hw/intc/apic.c | 8 1