Re: [PATCH v2 4/8] x86/svm: drop writes to BU_CFG on revF chips

2020-08-27 Thread Jan Beulich
On 20.08.2020 17:08, Roger Pau Monne wrote: > --- a/xen/arch/x86/hvm/svm/svm.c > +++ b/xen/arch/x86/hvm/svm/svm.c > @@ -2125,6 +2125,12 @@ static int svm_msr_write_intercept(unsigned int msr, > uint64_t msr_content) > nsvm->ns_msr_hsavepa = msr_content; > break; > > +case M

[PATCH v2 4/8] x86/svm: drop writes to BU_CFG on revF chips

2020-08-20 Thread Roger Pau Monne
We already have special casing to handle reads of this MSR for revF chips, so do as the comment in svm_msr_read_intercept says and drop writes. This is in preparation for changing the default MSR write behavior, which will instead return #GP on not explicitly handled writes. Signed-off-by: Roger P