Patch "KVM: SVM: enhance info printk's in SEV init" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    KVM: SVM: enhance info printk's in SEV init

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kvm-svm-enhance-info-printk-s-in-sev-init.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 6688ee674bc40eb0df66195e870205542c8ae100
Author: Alexander Mikhalitsyn <alexander@xxxxxxxxxxxxx>
Date:   Mon May 22 18:12:48 2023 +0200

    KVM: SVM: enhance info printk's in SEV init
    
    [ Upstream commit 6d1bc9754b04075d938b47cf7f7800814b8911a7 ]
    
    Let's print available ASID ranges for SEV/SEV-ES guests.
    This information can be useful for system administrator
    to debug if SEV/SEV-ES fails to enable.
    
    There are a few reasons.
    SEV:
    - NPT is disabled (module parameter)
    - CPU lacks some features (sev, decodeassists)
    - Maximum SEV ASID is 0
    
    SEV-ES:
    - mmio_caching is disabled (module parameter)
    - CPU lacks sev_es feature
    - Minimum SEV ASID value is 1 (can be adjusted in BIOS/UEFI)
    
    Cc: Sean Christopherson <seanjc@xxxxxxxxxx>
    Cc: Paolo Bonzini <pbonzini@xxxxxxxxxx>
    Cc: Stéphane Graber <stgraber@xxxxxxxxxx>
    Cc: kvm@xxxxxxxxxxxxxxx
    Cc: linux-kernel@xxxxxxxxxxxxxxx
    Suggested-by: Sean Christopherson <seanjc@xxxxxxxxxx>
    Signed-off-by: Alexander Mikhalitsyn <aleksandr.mikhalitsyn@xxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230522161249.800829-3-aleksandr.mikhalitsyn@xxxxxxxxxxxxx
    [sean: print '0' for min SEV-ES ASID if there are no available ASIDs]
    Signed-off-by: Sean Christopherson <seanjc@xxxxxxxxxx>
    Stable-dep-of: 0aa6b90ef9d7 ("KVM: SVM: Add support for allowing zero SEV ASIDs")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/x86/kvm/svm/sev.c b/arch/x86/kvm/svm/sev.c
index 3dc0ee1fe9db9..1fe9257d87b2d 100644
--- a/arch/x86/kvm/svm/sev.c
+++ b/arch/x86/kvm/svm/sev.c
@@ -2217,7 +2217,6 @@ void __init sev_hardware_setup(void)
 	if (misc_cg_set_capacity(MISC_CG_RES_SEV, sev_asid_count))
 		goto out;
 
-	pr_info("SEV supported: %u ASIDs\n", sev_asid_count);
 	sev_supported = true;
 
 	/* SEV-ES support requested? */
@@ -2245,10 +2244,18 @@ void __init sev_hardware_setup(void)
 	if (misc_cg_set_capacity(MISC_CG_RES_SEV_ES, sev_es_asid_count))
 		goto out;
 
-	pr_info("SEV-ES supported: %u ASIDs\n", sev_es_asid_count);
 	sev_es_supported = true;
 
 out:
+	if (boot_cpu_has(X86_FEATURE_SEV))
+		pr_info("SEV %s (ASIDs %u - %u)\n",
+			sev_supported ? "enabled" : "disabled",
+			min_sev_asid, max_sev_asid);
+	if (boot_cpu_has(X86_FEATURE_SEV_ES))
+		pr_info("SEV-ES %s (ASIDs %u - %u)\n",
+			sev_es_supported ? "enabled" : "disabled",
+			min_sev_asid > 1 ? 1 : 0, min_sev_asid - 1);
+
 	sev_enabled = sev_supported;
 	sev_es_enabled = sev_es_supported;
 #endif




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux