Skip to content

Commit 8b4ce83

Browse files
tlendackysuryasaimadhu
authored andcommitted
x86/sev-es: Handle INVD Events
Implement a handler for #VC exceptions caused by INVD instructions. Since Linux should never use INVD, just mark it as unsupported. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> [ jroedel@suse.de: Adapt to #VC handling infrastructure ] Co-developed-by: Joerg Roedel <jroedel@suse.de> Signed-off-by: Joerg Roedel <jroedel@suse.de> Signed-off-by: Borislav Petkov <bp@suse.de> Link: https://lkml.kernel.org/r/20200907131613.12703-57-joro@8bytes.org
1 parent 5d55cf7 commit 8b4ce83

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

arch/x86/kernel/sev-es.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,10 @@ static enum es_result vc_handle_exitcode(struct es_em_ctxt *ctxt,
892892
case SVM_EXIT_RDPMC:
893893
result = vc_handle_rdpmc(ghcb, ctxt);
894894
break;
895+
case SVM_EXIT_INVD:
896+
pr_err_ratelimited("#VC exception for INVD??? Seriously???\n");
897+
result = ES_UNSUPPORTED;
898+
break;
895899
case SVM_EXIT_CPUID:
896900
result = vc_handle_cpuid(ghcb, ctxt);
897901
break;

0 commit comments

Comments
 (0)