Patch "perf/x86: Avoid touching LBR_TOS MSR for Arch LBR" has been added to the 5.10-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

    perf/x86: Avoid touching LBR_TOS MSR for Arch LBR

to the 5.10-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:
     perf-x86-avoid-touching-lbr_tos-msr-for-arch-lbr.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 94285c357fc8550a125c6fe1b6e662e914861ee9
Author: Like Xu <like.xu@xxxxxxxxxxxxxxx>
Date:   Fri Apr 30 13:22:46 2021 +0800

    perf/x86: Avoid touching LBR_TOS MSR for Arch LBR
    
    [ Upstream commit 3317c26a4b413b41364f2c4b83c778c6aba1576d ]
    
    The Architecture LBR does not have MSR_LBR_TOS (0x000001c9).
    In a guest that should support Architecture LBR, check_msr()
    will be a non-related check for the architecture MSR 0x0
    (IA32_P5_MC_ADDR) that is also not supported by KVM.
    
    The failure will cause x86_pmu.lbr_nr = 0, thereby preventing
    the initialization of the guest Arch LBR. Fix it by avoiding
    this extraneous check in intel_pmu_init() for Arch LBR.
    
    Fixes: 47125db27e47 ("perf/x86/intel/lbr: Support Architectural LBR")
    Signed-off-by: Like Xu <like.xu@xxxxxxxxxxxxxxx>
    [peterz: simpler still]
    Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>
    Link: https://lkml.kernel.org/r/20210430052247.3079672-1-like.xu@xxxxxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c
index 0b9975200ae3..ee659b5faf71 100644
--- a/arch/x86/events/intel/core.c
+++ b/arch/x86/events/intel/core.c
@@ -5563,7 +5563,7 @@ __init int intel_pmu_init(void)
 	 * Check all LBT MSR here.
 	 * Disable LBR access if any LBR MSRs can not be accessed.
 	 */
-	if (x86_pmu.lbr_nr && !check_msr(x86_pmu.lbr_tos, 0x3UL))
+	if (x86_pmu.lbr_tos && !check_msr(x86_pmu.lbr_tos, 0x3UL))
 		x86_pmu.lbr_nr = 0;
 	for (i = 0; i < x86_pmu.lbr_nr; i++) {
 		if (!(check_msr(x86_pmu.lbr_from + i, 0xffffUL) &&



[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