diff options
author | Kan Liang <[email protected]> | 2020-07-23 10:11:08 -0700 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2020-08-18 16:34:35 +0200 |
commit | bbdbde2a415d9f479803266cae6fb0c1a9f6c80e (patch) | |
tree | 9b7e7283150a0af550ccb90e684b0975fb8b6d98 | |
parent | d39fcc32893dac2d02900d99c38276a00cc54d60 (diff) |
perf/x86/intel: Fix the name of perf METRICS
Bit 15 of the PERF_CAPABILITIES MSR indicates that the perf METRICS
feature is supported. The perf METRICS is not a PEBS feature.
Rename pebs_metrics_available perf_metrics.
The bit is not used in the current code. It will be used in a later
patch.
Signed-off-by: Kan Liang <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | arch/x86/events/perf_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/events/perf_event.h b/arch/x86/events/perf_event.h index 7b68ab5f19e7..5d453da8cfa6 100644 --- a/arch/x86/events/perf_event.h +++ b/arch/x86/events/perf_event.h @@ -537,7 +537,7 @@ union perf_capabilities { */ u64 full_width_write:1; u64 pebs_baseline:1; - u64 pebs_metrics_available:1; + u64 perf_metrics:1; u64 pebs_output_pt_available:1; }; u64 capabilities; |