diff options
author | Adrian Hunter <[email protected]> | 2021-06-27 16:18:17 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2021-07-01 16:14:38 -0300 |
commit | 6495e762522d4cf73d0b339830091799881eb025 (patch) | |
tree | 5a9e6d602bafd6359194a84ed27adc46c6ae6f6c | |
parent | 244afc0c93205fa144c782562ad3f9435ae4ea93 (diff) |
perf dlfilter: Add attr() to perf_dlfilter_fns
Add a function, for use by dlfilters, to return the perf_event_attr
structure.
Signed-off-by: Adrian Hunter <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Leo Yan <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/Documentation/perf-dlfilter.txt | 5 | ||||
-rw-r--r-- | tools/perf/util/dlfilter.c | 11 | ||||
-rw-r--r-- | tools/perf/util/perf_dlfilter.h | 4 |
3 files changed, 18 insertions, 2 deletions
diff --git a/tools/perf/Documentation/perf-dlfilter.txt b/tools/perf/Documentation/perf-dlfilter.txt index df118ddcd7f4..6b1d9da16feb 100644 --- a/tools/perf/Documentation/perf-dlfilter.txt +++ b/tools/perf/Documentation/perf-dlfilter.txt @@ -126,7 +126,8 @@ struct perf_dlfilter_fns { __s32 (*resolve_address)(void *ctx, __u64 address, struct perf_dlfilter_al *al); const __u8 *(*insn)(void *ctx, __u32 *length); const char *(*srcline)(void *ctx, __u32 *line_number); - void *(*reserved[122])(void *); + struct perf_event_attr *(*attr)(void *ctx); + void *(*reserved[121])(void *); }; ---- @@ -143,6 +144,8 @@ before calling. Returns 0 on success, -1 otherwise. 'srcline' return source file name and line number. +'attr' returns perf_event_attr, refer <linux/perf_event.h>. + The perf_dlfilter_al structure ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tools/perf/util/dlfilter.c b/tools/perf/util/dlfilter.c index f4ce1a80bddc..e50d524906d6 100644 --- a/tools/perf/util/dlfilter.c +++ b/tools/perf/util/dlfilter.c @@ -235,6 +235,16 @@ static const char *dlfilter__srcline(void *ctx, __u32 *line_no) return srcfile; } +static struct perf_event_attr *dlfilter__attr(void *ctx) +{ + struct dlfilter *d = (struct dlfilter *)ctx; + + if (!d->ctx_valid) + return NULL; + + return &d->evsel->core.attr; +} + static const struct perf_dlfilter_fns perf_dlfilter_fns = { .resolve_ip = dlfilter__resolve_ip, .resolve_addr = dlfilter__resolve_addr, @@ -242,6 +252,7 @@ static const struct perf_dlfilter_fns perf_dlfilter_fns = { .resolve_address = dlfilter__resolve_address, .insn = dlfilter__insn, .srcline = dlfilter__srcline, + .attr = dlfilter__attr, }; static char *find_dlfilter(const char *file) diff --git a/tools/perf/util/perf_dlfilter.h b/tools/perf/util/perf_dlfilter.h index b989918056e2..f3fc92fcb3c0 100644 --- a/tools/perf/util/perf_dlfilter.h +++ b/tools/perf/util/perf_dlfilter.h @@ -101,8 +101,10 @@ struct perf_dlfilter_fns { const __u8 *(*insn)(void *ctx, __u32 *length); /* Return source file name and line number */ const char *(*srcline)(void *ctx, __u32 *line_number); + /* Return perf_event_attr, refer <linux/perf_event.h> */ + struct perf_event_attr *(*attr)(void *ctx); /* Reserved */ - void *(*reserved[122])(void *); + void *(*reserved[121])(void *); }; /* |