Re: [PATCH v2] KVM: selftest: Enhance handling WRMSR ICR register in x2APIC mode

From: Zeng Guang
Date: Fri Jun 24 2022 - 00:28:55 EST



On 6/23/2022 6:33 PM, Gao, Chao wrote:
On Thu, Jun 23, 2022 at 05:45:11PM +0800, Zeng Guang wrote:

+ ASSERT_EQ(icr & ~APIC_ICR_BUSY, val & ~APIC_ICR_BUSY);
Probably add a comment for it would be better. E.g.,

APIC_ICR_BUSY is removed and not used when CPU is in x2APIC mode.
It is undefined whether write 1 to this bit will be preserved. So,
even KVM keeps this bit cleared in some cases even in x2apic mode,
no guarantee that hardware (specifically, CPU ucode when Intel IPI
virtualization enabled) will clear the bit. So, skip checking this
bit.
Hardware won't touch APIC_ICR_BUSY in x2apic mode. It totally depends on KVM to
clear it or not if set for test purpose. While in Intel IPI virtualization case,
KVM doesn't take care of this bit in vICR writes. So how about the comments as
below:

APIC_ICR_BUSY is removed and not used when CPU is in x2APIC mode.
KVM doesn't guarantee to clear this bit in some cases e.g. When
Intel IPI virtualization enabled, if it's set for test purpose.
So, skip checking this bit.

Thanks.
Zeng Guang