[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2] SVM: Add union intstat_t for offset 68h in vmcb struct
On 24.03.2020 11:37, Pu Wen wrote: > According to chapter "Appendix B Layout of VMCB" in the new version > (v3.32) AMD64 APM[1], bit 1 of the VMCB offset 68h is defined as > GUEST_INTERRUPT_MASK. > > In current xen codes, it use whole u64 interrupt_shadow to setup > interrupt shadow, which will misuse other bit in VMCB offset 68h > as part of interrupt_shadow. > > Add union intstat_t for VMCB offset 68h and fix codes to only use > bit 0 as intr_shadow according to the new APM description. > > Reference: > [1] https://www.amd.com/system/files/TechDocs/24593.pdf > > Signed-off-by: Pu Wen <puwen@xxxxxxxx> Looks okay now to me (with one further nit, see below), but ... > v1->v2: > - Copy the whole int_stat in nsvm_vmcb_prepare4vmrun() and > nsvm_vmcb_prepare4vmexit(). ... in particular this part I'd prefer to wait a little to whether Andrew or anyone else has a specific opinion one or the other way. > --- a/xen/include/asm-x86/hvm/svm/vmcb.h > +++ b/xen/include/asm-x86/hvm/svm/vmcb.h > @@ -316,6 +316,17 @@ typedef union > uint64_t raw; > } intinfo_t; > > +typedef union > +{ > + struct > + { Nit: The brace should be on the same line as "struct"; can be taken care of while committing. Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |