mbox series

[0/3] KVM: nSVM: Check CR0.CD and CR0.NW on VMRUN of nested guests

Message ID 20200409205035.16830-1-krish.sadhukhan@oracle.com (mailing list archive)
Headers show
Series KVM: nSVM: Check CR0.CD and CR0.NW on VMRUN of nested guests | expand

Message

Krish Sadhukhan April 9, 2020, 8:50 p.m. UTC
Patch# 1: Adds the KVM check.
Patch# 2: Adds the required #defines for the two CR0 bits.
Patch# 3: Adds the kvm-unit-test

[PATCH 1/3] KVM: nSVM: Check for CR0.CD and CR0.NW on VMRUN of nested guests
[PATCH 2/3] kvm-unit-tests: SVM: Add #defines for CR0.CD and CR0.NW
[PATCH 3/3] kvm-unit-tests: nSVM: Test CR0.CD and CR0.NW combination on VMRUN of

 arch/x86/kvm/svm/nested.c | 4 ++++
 1 file changed, 4 insertions(+)

Krish Sadhukhan (1):
      nSVM: Check for CR0.CD and CR0.NW on VMRUN of nested guests

 lib/x86/processor.h |  2 ++
 x86/svm_tests.c     | 28 +++++++++++++++++++++++++++-
 2 files changed, 29 insertions(+), 1 deletion(-)

Krish Sadhukhan (2):
      SVM: Add #defines for CR0.CD and CR0.NW
      nSVM: Test CR0.CD and CR0.NW combination on VMRUN of nested guests

Comments

Paolo Bonzini April 16, 2020, 1:59 p.m. UTC | #1
On 09/04/20 22:50, Krish Sadhukhan wrote:
> Patch# 1: Adds the KVM check.
> Patch# 2: Adds the required #defines for the two CR0 bits.
> Patch# 3: Adds the kvm-unit-test
> 
> [PATCH 1/3] KVM: nSVM: Check for CR0.CD and CR0.NW on VMRUN of nested guests
> [PATCH 2/3] kvm-unit-tests: SVM: Add #defines for CR0.CD and CR0.NW
> [PATCH 3/3] kvm-unit-tests: nSVM: Test CR0.CD and CR0.NW combination on VMRUN of
> 
>  arch/x86/kvm/svm/nested.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> Krish Sadhukhan (1):
>       nSVM: Check for CR0.CD and CR0.NW on VMRUN of nested guests
> 
>  lib/x86/processor.h |  2 ++
>  x86/svm_tests.c     | 28 +++++++++++++++++++++++++++-
>  2 files changed, 29 insertions(+), 1 deletion(-)
> 
> Krish Sadhukhan (2):
>       SVM: Add #defines for CR0.CD and CR0.NW
>       nSVM: Test CR0.CD and CR0.NW combination on VMRUN of nested guests
> 

Queued, thanks.

Paolo