mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
perf tool_pmu: Make tool PMU events respect enable/disable
Tool PMU events (duration_time, user_time, system_time) currently
count from when the event is opened to when it is read. This causes
issues with features like the delay option (-D) or control fd, where
events are opened but should not start counting immediately.
Make these events behave more like regular counters by implementing
proper enable and disable support. Add accumulated_time to struct
evsel to track time while enabled, and implement enable/disable CPU
callbacks to start/stop counting.
Also generalize userspace PMU mixed group handling. Userspace synthetic
PMUs (type > PERF_PMU_TYPE_PE_END) do not have kernel implementations and
cannot be grouped in the kernel (opened with group_fd = -1), and are
skipped by kernel enable/disable calls. Iterate over group members in
userspace and manually enable/disable any members if the leader or the
member is a non-perf-event open PMU, and synchronize their disabled flags.
Closes: https://lore.kernel.org/linux-perf-users/20260517093650.2540920-1-nigro.fra@gmail.com/
Fixes: b71f46a6a7 ("perf stat: Remove hard coded shadow metrics")
Reported-by: Francesco Nigro <nigro.fra@gmail.com>
Assisted-by: Antigravity:gemini-3-flash
Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@linaro.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Richter <tmricht@linux.ibm.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
a31423e67c
commit
0b18bced54
|
|
@ -529,7 +529,7 @@ static int evlist__is_enabled(struct evlist *evlist)
|
|||
|
||||
static void __evlist__disable(struct evlist *evlist, char *evsel_name, bool excl_dummy)
|
||||
{
|
||||
struct evsel *pos;
|
||||
struct evsel *pos, *member;
|
||||
struct evlist_cpu_iterator evlist_cpu_itr;
|
||||
bool has_imm = false;
|
||||
|
||||
|
|
@ -561,6 +561,9 @@ static void __evlist__disable(struct evlist *evlist, char *evsel_name, bool excl
|
|||
if (excl_dummy && evsel__is_dummy_event(pos))
|
||||
continue;
|
||||
pos->disabled = true;
|
||||
|
||||
for_each_group_member(member, pos)
|
||||
member->disabled = true;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -590,7 +593,7 @@ void evlist__disable_evsel(struct evlist *evlist, char *evsel_name)
|
|||
|
||||
static void __evlist__enable(struct evlist *evlist, char *evsel_name, bool excl_dummy)
|
||||
{
|
||||
struct evsel *pos;
|
||||
struct evsel *pos, *member;
|
||||
struct evlist_cpu_iterator evlist_cpu_itr;
|
||||
|
||||
evlist__for_each_cpu(evlist_cpu_itr, evlist) {
|
||||
|
|
@ -611,6 +614,9 @@ static void __evlist__enable(struct evlist *evlist, char *evsel_name, bool excl_
|
|||
if (excl_dummy && evsel__is_dummy_event(pos))
|
||||
continue;
|
||||
pos->disabled = false;
|
||||
|
||||
for_each_group_member(member, pos)
|
||||
member->disabled = false;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -11,68 +11,71 @@
|
|||
*/
|
||||
#define __SANE_USERSPACE_TYPES__
|
||||
|
||||
#include <byteswap.h>
|
||||
#include "evsel.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <dirent.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <api/fs/fs.h>
|
||||
#include <api/fs/tracing_path.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/ctype.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/hw_breakpoint.h>
|
||||
#include <linux/perf_event.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/zalloc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/types.h>
|
||||
#include <dirent.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <api/fs/fs.h>
|
||||
#include <api/fs/tracing_path.h>
|
||||
#include <byteswap.h>
|
||||
#include <internal/lib.h>
|
||||
#include <internal/threadmap.h>
|
||||
#include <internal/xyarray.h>
|
||||
#include <perf/cpumap.h>
|
||||
#include <perf/evsel.h>
|
||||
|
||||
#include "../perf-sys.h"
|
||||
#include "asm/bug.h"
|
||||
#include "bpf-filter.h"
|
||||
#include "bpf_counter.h"
|
||||
#include "callchain.h"
|
||||
#include "cgroup.h"
|
||||
#include "counts.h"
|
||||
#include "dwarf-regs.h"
|
||||
#include "event.h"
|
||||
#include "evsel.h"
|
||||
#include "time-utils.h"
|
||||
#include "util/env.h"
|
||||
#include "util/evsel_config.h"
|
||||
#include "util/evsel_fprintf.h"
|
||||
#include "evlist.h"
|
||||
#include <perf/cpumap.h>
|
||||
#include "thread_map.h"
|
||||
#include "target.h"
|
||||
#include "perf_regs.h"
|
||||
#include "record.h"
|
||||
#include "debug.h"
|
||||
#include "trace-event.h"
|
||||
#include "drm_pmu.h"
|
||||
#include "dwarf-regs.h"
|
||||
#include "env.h"
|
||||
#include "event.h"
|
||||
#include "evlist.h"
|
||||
#include "evsel_config.h"
|
||||
#include "evsel_fprintf.h"
|
||||
#include "hashmap.h"
|
||||
#include "hist.h"
|
||||
#include "hwmon_pmu.h"
|
||||
#include "intel-tpebs.h"
|
||||
#include "memswap.h"
|
||||
#include "off_cpu.h"
|
||||
#include "parse-branch-options.h"
|
||||
#include "perf_regs.h"
|
||||
#include "pmu.h"
|
||||
#include "pmus.h"
|
||||
#include "record.h"
|
||||
#include "rlimit.h"
|
||||
#include "session.h"
|
||||
#include "stat.h"
|
||||
#include "string2.h"
|
||||
#include "memswap.h"
|
||||
#include "util.h"
|
||||
#include "util/hashmap.h"
|
||||
#include "off_cpu.h"
|
||||
#include "pmu.h"
|
||||
#include "pmus.h"
|
||||
#include "drm_pmu.h"
|
||||
#include "hwmon_pmu.h"
|
||||
#include "target.h"
|
||||
#include "thread_map.h"
|
||||
#include "time-utils.h"
|
||||
#include "tool_pmu.h"
|
||||
#include "tp_pmu.h"
|
||||
#include "rlimit.h"
|
||||
#include "../perf-sys.h"
|
||||
#include "util/parse-branch-options.h"
|
||||
#include "util/bpf-filter.h"
|
||||
#include "util/hist.h"
|
||||
#include <internal/xyarray.h>
|
||||
#include <internal/lib.h>
|
||||
#include <internal/threadmap.h>
|
||||
#include "util/intel-tpebs.h"
|
||||
|
||||
#include <linux/ctype.h>
|
||||
#include "trace-event.h"
|
||||
#include "util.h"
|
||||
|
||||
#ifdef HAVE_LIBTRACEEVENT
|
||||
#include <event-parse.h>
|
||||
|
|
@ -1795,27 +1798,114 @@ int evsel__append_addr_filter(struct evsel *evsel, const char *filter)
|
|||
/* Caller has to clear disabled after going through all CPUs. */
|
||||
int evsel__enable_cpu(struct evsel *evsel, int cpu_map_idx)
|
||||
{
|
||||
return perf_evsel__enable_cpu(&evsel->core, cpu_map_idx);
|
||||
int err;
|
||||
|
||||
if (evsel__is_tool(evsel))
|
||||
err = evsel__tool_pmu_enable_cpu(evsel, cpu_map_idx);
|
||||
else
|
||||
err = perf_evsel__enable_cpu(&evsel->core, cpu_map_idx);
|
||||
|
||||
if (!err && evsel__is_group_leader(evsel)) {
|
||||
struct evsel *member;
|
||||
|
||||
for_each_group_member(member, evsel) {
|
||||
if (evsel__is_non_perf_event_open_pmu(evsel) ||
|
||||
evsel__is_non_perf_event_open_pmu(member)) {
|
||||
/*
|
||||
* In a mixed PMU group, userspace PMUs are not
|
||||
* grouped in the kernel (opened with group_fd = -1)
|
||||
* and are skipped by the kernel when enabling the
|
||||
* group leader. We must manually enable them in
|
||||
* userspace.
|
||||
*/
|
||||
int mem_err = evsel__enable_cpu(member, cpu_map_idx);
|
||||
|
||||
if (mem_err)
|
||||
return mem_err;
|
||||
}
|
||||
}
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
int evsel__enable(struct evsel *evsel)
|
||||
{
|
||||
int err = perf_evsel__enable(&evsel->core);
|
||||
int err;
|
||||
|
||||
if (evsel__is_tool(evsel))
|
||||
err = evsel__tool_pmu_enable(evsel);
|
||||
else
|
||||
err = perf_evsel__enable(&evsel->core);
|
||||
|
||||
if (!err)
|
||||
evsel->disabled = false;
|
||||
|
||||
if (!err && evsel__is_group_leader(evsel)) {
|
||||
struct evsel *member;
|
||||
|
||||
for_each_group_member(member, evsel) {
|
||||
if (evsel__is_non_perf_event_open_pmu(evsel) ||
|
||||
evsel__is_non_perf_event_open_pmu(member)) {
|
||||
/*
|
||||
* In a mixed PMU group, userspace PMUs are not
|
||||
* grouped in the kernel (opened with group_fd = -1)
|
||||
* and are skipped by the kernel when enabling the
|
||||
* group leader. We must manually enable them in
|
||||
* userspace.
|
||||
*/
|
||||
int mem_err = evsel__enable(member);
|
||||
|
||||
if (mem_err)
|
||||
return mem_err;
|
||||
}
|
||||
member->disabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
/* Caller has to set disabled after going through all CPUs. */
|
||||
int evsel__disable_cpu(struct evsel *evsel, int cpu_map_idx)
|
||||
{
|
||||
return perf_evsel__disable_cpu(&evsel->core, cpu_map_idx);
|
||||
int err;
|
||||
|
||||
if (evsel__is_tool(evsel))
|
||||
err = evsel__tool_pmu_disable_cpu(evsel, cpu_map_idx);
|
||||
else
|
||||
err = perf_evsel__disable_cpu(&evsel->core, cpu_map_idx);
|
||||
|
||||
if (!err && evsel__is_group_leader(evsel)) {
|
||||
struct evsel *member;
|
||||
|
||||
for_each_group_member(member, evsel) {
|
||||
if (evsel__is_non_perf_event_open_pmu(evsel) ||
|
||||
evsel__is_non_perf_event_open_pmu(member)) {
|
||||
/*
|
||||
* In a mixed PMU group, userspace PMUs are not
|
||||
* grouped in the kernel and are skipped by the
|
||||
* kernel when disabling the group leader. We must
|
||||
* manually disable them in userspace.
|
||||
*/
|
||||
int mem_err = evsel__disable_cpu(member, cpu_map_idx);
|
||||
|
||||
if (mem_err)
|
||||
return mem_err;
|
||||
}
|
||||
}
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
int evsel__disable(struct evsel *evsel)
|
||||
{
|
||||
int err = perf_evsel__disable(&evsel->core);
|
||||
int err;
|
||||
|
||||
if (evsel__is_tool(evsel))
|
||||
err = evsel__tool_pmu_disable(evsel);
|
||||
else
|
||||
err = perf_evsel__disable(&evsel->core);
|
||||
|
||||
/*
|
||||
* We mark it disabled here so that tools that disable a event can
|
||||
* ignore events after they disable it. I.e. the ring buffer may have
|
||||
|
|
@ -1825,6 +1915,27 @@ int evsel__disable(struct evsel *evsel)
|
|||
if (!err)
|
||||
evsel->disabled = true;
|
||||
|
||||
if (!err && evsel__is_group_leader(evsel)) {
|
||||
struct evsel *member;
|
||||
|
||||
for_each_group_member(member, evsel) {
|
||||
if (evsel__is_non_perf_event_open_pmu(evsel) ||
|
||||
evsel__is_non_perf_event_open_pmu(member)) {
|
||||
/*
|
||||
* In a mixed PMU group, userspace PMUs are not
|
||||
* grouped in the kernel and are skipped by the
|
||||
* kernel when disabling the group leader. We must
|
||||
* manually disable them in userspace.
|
||||
*/
|
||||
int mem_err = evsel__disable(member);
|
||||
|
||||
if (mem_err)
|
||||
return mem_err;
|
||||
}
|
||||
member->disabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
@ -1885,8 +1996,10 @@ void evsel__exit(struct evsel *evsel)
|
|||
evsel__priv_destructor(evsel->priv);
|
||||
perf_evsel__object.fini(evsel);
|
||||
if (evsel__tool_event(evsel) == TOOL_PMU__EVENT_SYSTEM_TIME ||
|
||||
evsel__tool_event(evsel) == TOOL_PMU__EVENT_USER_TIME)
|
||||
xyarray__delete(evsel->start_times);
|
||||
evsel__tool_event(evsel) == TOOL_PMU__EVENT_USER_TIME) {
|
||||
xyarray__delete(evsel->process_time.start_times);
|
||||
xyarray__delete(evsel->process_time.accumulated_times);
|
||||
}
|
||||
}
|
||||
|
||||
void evsel__delete(struct evsel *evsel)
|
||||
|
|
|
|||
|
|
@ -190,12 +190,18 @@ struct evsel {
|
|||
double max;
|
||||
} retirement_latency;
|
||||
/* duration_time is a single global time. */
|
||||
__u64 start_time;
|
||||
struct {
|
||||
__u64 start_time;
|
||||
__u64 accumulated_time;
|
||||
} duration_time;
|
||||
/*
|
||||
* user_time and system_time read an initial value potentially
|
||||
* per-CPU or per-pid.
|
||||
*/
|
||||
struct xyarray *start_times;
|
||||
struct {
|
||||
struct xyarray *start_times;
|
||||
struct xyarray *accumulated_times;
|
||||
} process_time;
|
||||
};
|
||||
/* Is the tool's fd for /proc/pid/stat or /proc/stat. */
|
||||
bool pid_stat;
|
||||
|
|
@ -350,6 +356,11 @@ void arch_evsel__apply_ratio_to_prev(struct evsel *evsel, struct perf_event_attr
|
|||
int evsel__set_filter(struct evsel *evsel, const char *filter);
|
||||
int evsel__append_tp_filter(struct evsel *evsel, const char *filter);
|
||||
int evsel__append_addr_filter(struct evsel *evsel, const char *filter);
|
||||
static inline bool evsel__is_non_perf_event_open_pmu(const struct evsel *evsel)
|
||||
{
|
||||
return evsel->pmu && evsel->pmu->type > PERF_PMU_TYPE_PE_END;
|
||||
}
|
||||
|
||||
int evsel__enable_cpu(struct evsel *evsel, int cpu_map_idx);
|
||||
int evsel__enable(struct evsel *evsel);
|
||||
int evsel__disable(struct evsel *evsel);
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@
|
|||
#include <fcntl.h>
|
||||
#include <strings.h>
|
||||
|
||||
#define INVALID_START_TIME ~0ULL
|
||||
|
||||
static const char *const tool_pmu__event_names[TOOL_PMU__EVENT_MAX] = {
|
||||
NULL,
|
||||
"duration_time",
|
||||
|
|
@ -205,20 +207,57 @@ int evsel__tool_pmu_prepare_open(struct evsel *evsel,
|
|||
struct perf_cpu_map *cpus,
|
||||
int nthreads)
|
||||
{
|
||||
if ((evsel__tool_event(evsel) == TOOL_PMU__EVENT_SYSTEM_TIME ||
|
||||
evsel__tool_event(evsel) == TOOL_PMU__EVENT_USER_TIME) &&
|
||||
!evsel->start_times) {
|
||||
evsel->start_times = xyarray__new(perf_cpu_map__nr(cpus),
|
||||
nthreads,
|
||||
sizeof(__u64));
|
||||
if (!evsel->start_times)
|
||||
return -ENOMEM;
|
||||
enum tool_pmu_event ev = evsel__tool_event(evsel);
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_SYSTEM_TIME || ev == TOOL_PMU__EVENT_USER_TIME) {
|
||||
if (!evsel->process_time.start_times) {
|
||||
evsel->process_time.start_times =
|
||||
xyarray__new(perf_cpu_map__nr(cpus), nthreads, sizeof(__u64));
|
||||
if (!evsel->process_time.start_times)
|
||||
return -ENOMEM;
|
||||
}
|
||||
if (!evsel->process_time.accumulated_times) {
|
||||
evsel->process_time.accumulated_times =
|
||||
xyarray__new(perf_cpu_map__nr(cpus), nthreads, sizeof(__u64));
|
||||
if (!evsel->process_time.accumulated_times)
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
|
||||
|
||||
static int tool_pmu__read_stat(struct evsel *evsel, int cpu_map_idx, int thread, __u64 *val)
|
||||
{
|
||||
enum tool_pmu_event ev = evsel__tool_event(evsel);
|
||||
bool system = ev == TOOL_PMU__EVENT_SYSTEM_TIME;
|
||||
int fd = FD(evsel, cpu_map_idx, thread);
|
||||
int err = 0;
|
||||
|
||||
if (fd < 0) {
|
||||
*val = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
lseek(fd, 0, SEEK_SET);
|
||||
if (evsel->pid_stat) {
|
||||
if (cpu_map_idx == 0)
|
||||
err = read_pid_stat_field(fd, system ? 15 : 14, val);
|
||||
else
|
||||
*val = 0;
|
||||
} else {
|
||||
if (thread == 0) {
|
||||
struct perf_cpu cpu = perf_cpu_map__cpu(evsel->core.cpus, cpu_map_idx);
|
||||
|
||||
err = read_stat_field(fd, cpu, system ? 3 : 1, val);
|
||||
} else {
|
||||
*val = 0;
|
||||
}
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
int evsel__tool_pmu_open(struct evsel *evsel,
|
||||
struct perf_thread_map *threads,
|
||||
int start_cpu_map_idx, int end_cpu_map_idx)
|
||||
|
|
@ -232,7 +271,14 @@ int evsel__tool_pmu_open(struct evsel *evsel,
|
|||
if (ev == TOOL_PMU__EVENT_DURATION_TIME) {
|
||||
if (evsel->core.attr.sample_period) /* no sampling */
|
||||
return -EINVAL;
|
||||
evsel->start_time = rdclock();
|
||||
evsel->duration_time.accumulated_time = 0;
|
||||
if (evsel->core.attr.disabled) {
|
||||
evsel->disabled = true;
|
||||
evsel->duration_time.start_time = INVALID_START_TIME;
|
||||
} else {
|
||||
evsel->disabled = false;
|
||||
evsel->duration_time.start_time = rdclock();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -246,8 +292,8 @@ int evsel__tool_pmu_open(struct evsel *evsel,
|
|||
pid = perf_thread_map__pid(threads, thread);
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_USER_TIME || ev == TOOL_PMU__EVENT_SYSTEM_TIME) {
|
||||
bool system = ev == TOOL_PMU__EVENT_SYSTEM_TIME;
|
||||
__u64 *start_time = NULL;
|
||||
__u64 *accumulated_time = NULL;
|
||||
int fd;
|
||||
|
||||
if (evsel->core.attr.sample_period) {
|
||||
|
|
@ -269,21 +315,25 @@ int evsel__tool_pmu_open(struct evsel *evsel,
|
|||
err = -errno;
|
||||
goto out_close;
|
||||
}
|
||||
start_time = xyarray__entry(evsel->start_times, idx, thread);
|
||||
if (pid > -1) {
|
||||
err = read_pid_stat_field(fd, system ? 15 : 14,
|
||||
start_time);
|
||||
start_time = xyarray__entry(evsel->process_time.start_times, idx,
|
||||
thread);
|
||||
accumulated_time = xyarray__entry(
|
||||
evsel->process_time.accumulated_times, idx, thread);
|
||||
*accumulated_time = 0;
|
||||
|
||||
if (evsel->core.attr.disabled) {
|
||||
evsel->disabled = true;
|
||||
*start_time = INVALID_START_TIME;
|
||||
} else {
|
||||
struct perf_cpu cpu;
|
||||
|
||||
cpu = perf_cpu_map__cpu(evsel->core.cpus, idx);
|
||||
err = read_stat_field(fd, cpu, system ? 3 : 1,
|
||||
start_time);
|
||||
evsel->disabled = false;
|
||||
err = tool_pmu__read_stat(evsel, idx, thread, start_time);
|
||||
if (err) {
|
||||
close(fd);
|
||||
FD(evsel, idx, thread) = -1;
|
||||
goto out_close;
|
||||
}
|
||||
}
|
||||
if (err)
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
|
@ -467,10 +517,111 @@ static void perf_counts__update(struct perf_counts_values *count,
|
|||
count->lost = 0;
|
||||
}
|
||||
}
|
||||
int evsel__tool_pmu_enable_cpu(struct evsel *evsel, int cpu_map_idx)
|
||||
{
|
||||
enum tool_pmu_event ev = evsel__tool_event(evsel);
|
||||
int thread, nthreads;
|
||||
|
||||
if (!evsel->disabled)
|
||||
return 0;
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_DURATION_TIME) {
|
||||
if (cpu_map_idx == 0)
|
||||
evsel->duration_time.start_time = rdclock();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_USER_TIME || ev == TOOL_PMU__EVENT_SYSTEM_TIME) {
|
||||
nthreads = xyarray__max_y(evsel->process_time.start_times);
|
||||
for (thread = 0; thread < nthreads; thread++) {
|
||||
__u64 *start_time = xyarray__entry(evsel->process_time.start_times,
|
||||
cpu_map_idx, thread);
|
||||
__u64 val;
|
||||
int err;
|
||||
|
||||
err = tool_pmu__read_stat(evsel, cpu_map_idx, thread, &val);
|
||||
if (!err)
|
||||
*start_time = val;
|
||||
else
|
||||
*start_time = INVALID_START_TIME;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int evsel__tool_pmu_enable(struct evsel *evsel)
|
||||
{
|
||||
unsigned int idx;
|
||||
int err = 0;
|
||||
|
||||
if (!evsel->disabled)
|
||||
return 0;
|
||||
|
||||
for (idx = 0; idx < perf_cpu_map__nr(evsel->core.cpus); idx++) {
|
||||
err = evsel__tool_pmu_enable_cpu(evsel, idx);
|
||||
if (err)
|
||||
break;
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
int evsel__tool_pmu_disable_cpu(struct evsel *evsel, int cpu_map_idx)
|
||||
{
|
||||
enum tool_pmu_event ev = evsel__tool_event(evsel);
|
||||
int thread, nthreads;
|
||||
|
||||
if (evsel->disabled)
|
||||
return 0;
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_DURATION_TIME) {
|
||||
if (cpu_map_idx == 0) {
|
||||
__u64 delta = rdclock() - evsel->duration_time.start_time;
|
||||
|
||||
evsel->duration_time.accumulated_time += delta;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (ev == TOOL_PMU__EVENT_USER_TIME || ev == TOOL_PMU__EVENT_SYSTEM_TIME) {
|
||||
nthreads = xyarray__max_y(evsel->process_time.start_times);
|
||||
for (thread = 0; thread < nthreads; thread++) {
|
||||
__u64 *start_time = xyarray__entry(evsel->process_time.start_times,
|
||||
cpu_map_idx, thread);
|
||||
__u64 *accumulated_time = xyarray__entry(
|
||||
evsel->process_time.accumulated_times, cpu_map_idx, thread);
|
||||
__u64 val;
|
||||
int err;
|
||||
|
||||
err = tool_pmu__read_stat(evsel, cpu_map_idx, thread, &val);
|
||||
if (!err) {
|
||||
if (*start_time != INVALID_START_TIME && val >= *start_time)
|
||||
*accumulated_time += (val - *start_time);
|
||||
}
|
||||
*start_time = INVALID_START_TIME;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int evsel__tool_pmu_disable(struct evsel *evsel)
|
||||
{
|
||||
unsigned int idx;
|
||||
int err = 0;
|
||||
|
||||
if (evsel->disabled)
|
||||
return 0;
|
||||
|
||||
for (idx = 0; idx < perf_cpu_map__nr(evsel->core.cpus); idx++) {
|
||||
err = evsel__tool_pmu_disable_cpu(evsel, idx);
|
||||
if (err)
|
||||
break;
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
int evsel__tool_pmu_read(struct evsel *evsel, int cpu_map_idx, int thread)
|
||||
{
|
||||
__u64 *start_time, cur_time, delta_start;
|
||||
__u64 delta_start = 0;
|
||||
int err = 0;
|
||||
struct perf_counts_values *count, *old_count = NULL;
|
||||
bool adjust = false;
|
||||
|
|
@ -507,39 +658,33 @@ int evsel__tool_pmu_read(struct evsel *evsel, int cpu_map_idx, int thread)
|
|||
return 0;
|
||||
}
|
||||
case TOOL_PMU__EVENT_DURATION_TIME:
|
||||
/*
|
||||
* Pretend duration_time is only on the first CPU and thread, or
|
||||
* else aggregation will scale duration_time by the number of
|
||||
* CPUs/threads.
|
||||
*/
|
||||
start_time = &evsel->start_time;
|
||||
if (cpu_map_idx == 0 && thread == 0)
|
||||
cur_time = rdclock();
|
||||
else
|
||||
cur_time = *start_time;
|
||||
if (cpu_map_idx == 0 && thread == 0) {
|
||||
delta_start = evsel->duration_time.accumulated_time;
|
||||
if (!evsel->disabled &&
|
||||
evsel->duration_time.start_time != INVALID_START_TIME)
|
||||
delta_start += (rdclock() - evsel->duration_time.start_time);
|
||||
} else {
|
||||
delta_start = 0;
|
||||
}
|
||||
break;
|
||||
case TOOL_PMU__EVENT_USER_TIME:
|
||||
case TOOL_PMU__EVENT_SYSTEM_TIME: {
|
||||
bool system = evsel__tool_event(evsel) == TOOL_PMU__EVENT_SYSTEM_TIME;
|
||||
int fd = FD(evsel, cpu_map_idx, thread);
|
||||
__u64 accumulated = *(__u64 *)xyarray__entry(evsel->process_time.accumulated_times,
|
||||
cpu_map_idx, thread);
|
||||
|
||||
start_time = xyarray__entry(evsel->start_times, cpu_map_idx, thread);
|
||||
lseek(fd, SEEK_SET, 0);
|
||||
if (evsel->pid_stat) {
|
||||
/* The event exists solely on 1 CPU. */
|
||||
if (cpu_map_idx == 0)
|
||||
err = read_pid_stat_field(fd, system ? 15 : 14, &cur_time);
|
||||
else
|
||||
cur_time = 0;
|
||||
if (evsel->disabled) {
|
||||
delta_start = accumulated;
|
||||
} else {
|
||||
/* The event is for all threads. */
|
||||
if (thread == 0) {
|
||||
struct perf_cpu cpu = perf_cpu_map__cpu(evsel->core.cpus,
|
||||
cpu_map_idx);
|
||||
__u64 *start_time = xyarray__entry(evsel->process_time.start_times,
|
||||
cpu_map_idx, thread);
|
||||
__u64 cur_time;
|
||||
|
||||
err = read_stat_field(fd, cpu, system ? 3 : 1, &cur_time);
|
||||
} else {
|
||||
cur_time = 0;
|
||||
err = tool_pmu__read_stat(evsel, cpu_map_idx, thread, &cur_time);
|
||||
if (!err) {
|
||||
if (*start_time != INVALID_START_TIME && cur_time >= *start_time)
|
||||
delta_start = accumulated + (cur_time - *start_time);
|
||||
else
|
||||
delta_start = accumulated;
|
||||
}
|
||||
}
|
||||
adjust = true;
|
||||
|
|
@ -553,7 +698,6 @@ int evsel__tool_pmu_read(struct evsel *evsel, int cpu_map_idx, int thread)
|
|||
if (err)
|
||||
return err;
|
||||
|
||||
delta_start = cur_time - *start_time;
|
||||
if (adjust) {
|
||||
__u64 ticks_per_sec = sysconf(_SC_CLK_TCK);
|
||||
|
||||
|
|
|
|||
|
|
@ -56,6 +56,10 @@ int evsel__tool_pmu_prepare_open(struct evsel *evsel,
|
|||
int evsel__tool_pmu_open(struct evsel *evsel,
|
||||
struct perf_thread_map *threads,
|
||||
int start_cpu_map_idx, int end_cpu_map_idx);
|
||||
int evsel__tool_pmu_enable_cpu(struct evsel *evsel, int cpu_map_idx);
|
||||
int evsel__tool_pmu_enable(struct evsel *evsel);
|
||||
int evsel__tool_pmu_disable_cpu(struct evsel *evsel, int cpu_map_idx);
|
||||
int evsel__tool_pmu_disable(struct evsel *evsel);
|
||||
int evsel__tool_pmu_read(struct evsel *evsel, int cpu_map_idx, int thread);
|
||||
|
||||
struct perf_pmu *tool_pmu__new(void);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user