x86/sev: Fix error message in runtime #VC handler
authorJoerg Roedel <jroedel@suse.de>
Wed, 19 May 2021 13:52:47 +0000 (15:52 +0200)
committerBorislav Petkov <bp@suse.de>
Tue, 15 Jun 2021 09:24:07 +0000 (11:24 +0200)
The runtime #VC handler is not "early" anymore. Fix the copy&paste error
and remove that word from the error message.

Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210614135327.9921-2-joro@8bytes.org
arch/x86/kernel/sev.c

index 651b81c..4fd997b 100644 (file)
@@ -1369,7 +1369,7 @@ DEFINE_IDTENTRY_VC_SAFE_STACK(exc_vmm_communication)
                vc_finish_insn(&ctxt);
                break;
        case ES_UNSUPPORTED:
-               pr_err_ratelimited("Unsupported exit-code 0x%02lx in early #VC exception (IP: 0x%lx)\n",
+               pr_err_ratelimited("Unsupported exit-code 0x%02lx in #VC exception (IP: 0x%lx)\n",
                                   error_code, regs->ip);
                goto fail;
        case ES_VMM_ERROR: