mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Avoid printing tracepoint, legacy and software events when listing for the pmu option. Add the PMU type to the print_event callbacks to ease detection. Signed-off-by: Ian Rogers <irogers@google.com> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Link: https://lore.kernel.org/r/20250725185202.68671-8-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_PRINT_EVENTS_H
|
|
#define __PERF_PRINT_EVENTS_H
|
|
|
|
#include <linux/perf_event.h>
|
|
#include <linux/types.h>
|
|
#include <stdbool.h>
|
|
|
|
struct event_symbol;
|
|
|
|
struct print_callbacks {
|
|
void (*print_start)(void *print_state);
|
|
void (*print_end)(void *print_state);
|
|
void (*print_event)(void *print_state, const char *topic,
|
|
const char *pmu_name, u32 pmu_type,
|
|
const char *event_name, const char *event_alias,
|
|
const char *scale_unit,
|
|
bool deprecated, const char *event_type_desc,
|
|
const char *desc, const char *long_desc,
|
|
const char *encoding_desc);
|
|
void (*print_metric)(void *print_state,
|
|
const char *group,
|
|
const char *name,
|
|
const char *desc,
|
|
const char *long_desc,
|
|
const char *expr,
|
|
const char *threshold,
|
|
const char *unit,
|
|
const char *pmu_name);
|
|
bool (*skip_duplicate_pmus)(void *print_state);
|
|
};
|
|
|
|
/** Print all events, the default when no options are specified. */
|
|
void print_events(const struct print_callbacks *print_cb, void *print_state);
|
|
int print_hwcache_events(const struct print_callbacks *print_cb, void *print_state);
|
|
void print_sdt_events(const struct print_callbacks *print_cb, void *print_state);
|
|
void print_symbol_events(const struct print_callbacks *print_cb, void *print_state,
|
|
unsigned int type, const struct event_symbol *syms,
|
|
unsigned int max);
|
|
void metricgroup__print(const struct print_callbacks *print_cb, void *print_state);
|
|
bool is_event_supported(u8 type, u64 config);
|
|
|
|
#endif /* __PERF_PRINT_EVENTS_H */
|