Patch "perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR" has been added to the 5.11-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/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR

to the 5.11-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-intel-set-perf_attach_sched_cb-for-large-pe.patch
and it can be found in the queue-5.11 subdirectory.

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



commit 23149f8d33137605095d5ea5d938054a4354fc6c
Author: Kan Liang <kan.liang@xxxxxxxxxxxxxxx>
Date:   Mon Nov 30 11:38:41 2020 -0800

    perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR
    
    [ Upstream commit afbef30149587ad46f4780b1e0cc5e219745ce90 ]
    
    To supply a PID/TID for large PEBS, it requires flushing the PEBS buffer
    in a context switch.
    
    For normal LBRs, a context switch can flip the address space and LBR
    entries are not tagged with an identifier, we need to wipe the LBR, even
    for per-cpu events.
    
    For LBR callstack, save/restore the stack is required during a context
    switch.
    
    Set PERF_ATTACH_SCHED_CB for the event with large PEBS & LBR.
    
    Fixes: 9c964efa4330 ("perf/x86/intel: Drain the PEBS buffer during context switches")
    Signed-off-by: Kan Liang <kan.liang@xxxxxxxxxxxxxxx>
    Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>
    Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
    Link: https://lkml.kernel.org/r/20201130193842.10569-2-kan.liang@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 4faaef3a8f6c..d3f5cf70c1a0 100644
--- a/arch/x86/events/intel/core.c
+++ b/arch/x86/events/intel/core.c
@@ -3578,8 +3578,10 @@ static int intel_pmu_hw_config(struct perf_event *event)
 		if (!(event->attr.freq || (event->attr.wakeup_events && !event->attr.watermark))) {
 			event->hw.flags |= PERF_X86_EVENT_AUTO_RELOAD;
 			if (!(event->attr.sample_type &
-			      ~intel_pmu_large_pebs_flags(event)))
+			      ~intel_pmu_large_pebs_flags(event))) {
 				event->hw.flags |= PERF_X86_EVENT_LARGE_PEBS;
+				event->attach_state |= PERF_ATTACH_SCHED_CB;
+			}
 		}
 		if (x86_pmu.pebs_aliases)
 			x86_pmu.pebs_aliases(event);
@@ -3592,6 +3594,7 @@ static int intel_pmu_hw_config(struct perf_event *event)
 		ret = intel_pmu_setup_lbr_filter(event);
 		if (ret)
 			return ret;
+		event->attach_state |= PERF_ATTACH_SCHED_CB;
 
 		/*
 		 * BTS is set up earlier in this path, so don't account twice



[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