Patch "EDAC/mce_amd: Do not load edac_mce_amd module on guests" has been added to the 5.14-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

    EDAC/mce_amd: Do not load edac_mce_amd module on guests

to the 5.14-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:
     edac-mce_amd-do-not-load-edac_mce_amd-module-on-gues.patch
and it can be found in the queue-5.14 subdirectory.

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



commit 143a74a2048d01e274fcfc64cce893113688f906
Author: Smita Koralahalli <Smita.KoralahalliChannabasappa@xxxxxxx>
Date:   Mon Jun 28 12:27:40 2021 -0500

    EDAC/mce_amd: Do not load edac_mce_amd module on guests
    
    [ Upstream commit 767f4b620edadac579c9b8b6660761d4285fa6f9 ]
    
    Hypervisors likely do not expose the SMCA feature to the guest and
    loading this module leads to false warnings. This module should not be
    loaded in guests to begin with, but people tend to do so, especially
    when testing kernels in VMs. And then they complain about those false
    warnings.
    
    Do the practical thing and do not load this module when running as a
    guest to avoid all that complaining.
    
     [ bp: Rewrite commit message. ]
    
    Suggested-by: Borislav Petkov <bp@xxxxxxx>
    Signed-off-by: Smita Koralahalli <Smita.KoralahalliChannabasappa@xxxxxxx>
    Signed-off-by: Borislav Petkov <bp@xxxxxxx>
    Reviewed-by: Yazen Ghannam <yazen.ghannam@xxxxxxx>
    Tested-by: Kim Phillips <kim.phillips@xxxxxxx>
    Link: https://lkml.kernel.org/r/20210628172740.245689-1-Smita.KoralahalliChannabasappa@xxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/edac/mce_amd.c b/drivers/edac/mce_amd.c
index 27d56920b469..67dbf4c31271 100644
--- a/drivers/edac/mce_amd.c
+++ b/drivers/edac/mce_amd.c
@@ -1246,6 +1246,9 @@ static int __init mce_amd_init(void)
 	    c->x86_vendor != X86_VENDOR_HYGON)
 		return -ENODEV;
 
+	if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR))
+		return -ENODEV;
+
 	if (boot_cpu_has(X86_FEATURE_SMCA)) {
 		xec_mask = 0x3f;
 		goto out;



[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