Displaying 3 results from an estimated 3 matches for "handle_cpuid".
2020 Feb 11
0
[PATCH 46/62] x86/sev-es: Handle INVD Events
...hcb,
unsigned long exit_code,
@@ -328,6 +333,9 @@ static enum es_result handle_vc_exception(struct es_em_ctxt *ctxt,
case SVM_EXIT_RDPMC:
result = handle_rdpmc(ghcb, ctxt);
break;
+ case SVM_EXIT_INVD:
+ result = handle_invd(ghcb, ctxt);
+ break;
case SVM_EXIT_CPUID:
result = handle_cpuid(ghcb, ctxt);
break;
--
2.17.1
2020 Feb 11
83
[RFC PATCH 00/62] Linux as SEV-ES Guest Support
Hi,
here is the first public post of the patch-set to enable Linux to run
under SEV-ES enabled hypervisors. The code is mostly feature-complete,
but there are still a couple of bugs to fix. Nevertheless, given the
size of the patch-set, I think it is about time to ask for initial
feedback of the changes that come with it. To better understand the code
here is a quick explanation of SEV-ES first.
2020 Feb 11
83
[RFC PATCH 00/62] Linux as SEV-ES Guest Support
Hi,
here is the first public post of the patch-set to enable Linux to run
under SEV-ES enabled hypervisors. The code is mostly feature-complete,
but there are still a couple of bugs to fix. Nevertheless, given the
size of the patch-set, I think it is about time to ask for initial
feedback of the changes that come with it. To better understand the code
here is a quick explanation of SEV-ES first.