Re: [PATCH 2/2] x86/svmdebug: Print sev and sev_es vmcb bits

2024-03-07 Thread Vaishali Thakkar
On 3/8/24 00:34, Andrew Cooper wrote: On 07/03/2024 9:40 pm, Vaishali Thakkar wrote: diff --git a/xen/arch/x86/hvm/svm/svmdebug.c b/xen/arch/x86/hvm/svm/svmdebug.c index 24358c6eea..f54b426fb3 100644 --- a/xen/arch/x86/hvm/svm/svmdebug.c +++ b/xen/arch/x86/hvm/svm/svmdebug.c @@ -53,6 +53,8 @@

Re: [PATCH 2/2] x86/svmdebug: Print sev and sev_es vmcb bits

2024-03-07 Thread Andrew Cooper
On 07/03/2024 9:40 pm, Vaishali Thakkar wrote: > diff --git a/xen/arch/x86/hvm/svm/svmdebug.c b/xen/arch/x86/hvm/svm/svmdebug.c > index 24358c6eea..f54b426fb3 100644 > --- a/xen/arch/x86/hvm/svm/svmdebug.c > +++ b/xen/arch/x86/hvm/svm/svmdebug.c > @@ -53,6 +53,8 @@ void svm_vmcb_dump(const char

[PATCH 2/2] x86/svmdebug: Print sev and sev_es vmcb bits

2024-03-07 Thread Vaishali Thakkar
While sev and sev_es bits are not yet enabled in xen, including their status in the VMCB dump could be informational.Therefore, print it via svmdebug. Signed-off-by: Vaishali Thakkar --- JFYI, we'll send the follow-up patches with the enablement of sev and ASP driver. ---