[RFC PATCH V2 0/9] Convert TSC to monotonic raw clock for PEBS

From: kan . liang
Date: Mon Feb 13 2023 - 14:08:02 EST


From: Kan Liang <kan.liang@xxxxxxxxxxxxxxx>

Compared with V1, this patch series provides a different solution to
address the conversion issue according to the feedback from Thomas and
John.
- Support the monotonic raw clock rather than the monotonic clock.
The monotonic raw clock is not affected by NTP/PTP correction.
The conversion information can be used to calculate the time for
large PEBS and do post-processing in perf tool.
- Support post-processing. Move the conversion to the user space
perf tool.
Link to V1:
https://lore.kernel.org/lkml/20230123182728.825519-1-kan.liang@xxxxxxxxxxxxxxx/

Motivation:
A Processor Event Based Sampling (PEBS) record includes a field that
provide the time stamp counter value when the counter was overflowed
and the PEBS record was generated. The accurate time stamp can be used
to reconcile user samples. However, the current PEBS codes only can
convert the time stamp to sched_clock, which is not available from user
space. A solution to convert a given TSC to user visible monotonic raw
clock is required.

Solution:
Currently, the conversion of any clock id is done in the kernel. The
patch series extends the existing ABI to dump both the raw HW time
and the conversion information into the user space. The conversion will
be done in the perf tool.

The extended ABI is shared among different ARCHs. But the patch series
only implements the post-processing conversion on X86 platforms. For the
other ARCHs, there is nothing changed. The post-processing conversion
can be added later separately.

Only support the post-processing conversion for monotonic raw clock,
since it is not affected by NTP/PTP correction.

With the patch series, on X86, the post-processing conversion is the
default setting of perf tool for monotonic raw clock.

The patch series is on top of Peter's perf/core branch.

Kan Liang (9):
timekeeping: Expose the conversion information of monotonic raw
perf: Extend ABI to support post-processing monotonic raw conversion
perf/x86: Factor out x86_pmu_sample_preload()
perf/x86: Enable post-processing monotonic raw conversion
perf/x86/intel: Enable large PEBS for monotonic raw
tools headers UAPI: Sync linux/perf_event.h with the kernel sources
perf session: Support the monotonic raw clock conversion information
perf evsel, tsc: Support the monotonic raw clock conversion
perf evsel: Enable post-processing monotonic raw conversion by default

arch/x86/events/amd/core.c | 3 +-
arch/x86/events/core.c | 15 +++++++---
arch/x86/events/intel/core.c | 6 ++--
arch/x86/events/intel/ds.c | 15 +++++++---
arch/x86/events/perf_event.h | 20 +++++++++++++
include/linux/timekeeping.h | 18 ++++++++++++
include/uapi/linux/perf_event.h | 21 ++++++++++++--
kernel/events/core.c | 7 +++++
kernel/time/timekeeping.c | 24 ++++++++++++++++
tools/include/uapi/linux/perf_event.h | 21 ++++++++++++--
tools/lib/perf/include/perf/event.h | 8 +++++-
tools/perf/util/evlist.h | 1 +
tools/perf/util/evsel.c | 28 +++++++++++++++++--
tools/perf/util/evsel.h | 8 ++++++
tools/perf/util/perf_event_attr_fprintf.c | 1 +
tools/perf/util/session.c | 9 ++++++
tools/perf/util/tsc.c | 34 ++++++++++++++++++++++-
tools/perf/util/tsc.h | 8 ++++++
18 files changed, 223 insertions(+), 24 deletions(-)

--
2.35.1