mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
As struct perf_sample now directly contains its own resolved evsel pointer, passing the evsel separately is redundant and clutters the interface. Remove the redundant evsel parameter from tool-specific handlers and structures, ensuring the tool always directly accesses the evsel bound to the sample. This simplifies the API signatures and eliminates the risk of passing an inconsistent evsel. Signed-off-by: Ian Rogers <irogers@google.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Alexandre Ghiti <alex@ghiti.fr> Cc: Andi Kleen <ak@linux.intel.com> Cc: Andrew Jones <ajones@ventanamicro.com> Cc: Anup Patel <anup@brainfault.org> Cc: Athira Rajeev <atrajeev@linux.ibm.com> Cc: Blake Jones <blakejones@google.com> Cc: Chen Ni <nichen@iscas.ac.cn> Cc: Chun-Tse Shao <ctshao@google.com> Cc: Dapeng Mi <dapeng1.mi@linux.intel.com> Cc: Derek Foreman <derek.foreman@collabora.com> Cc: Dmitriy Vyukov <dvyukov@google.com> Cc: Dr. David Alan Gilbert <linux@treblig.org> Cc: Howard Chu <howardchu95@gmail.com> Cc: Hrishikesh Suresh <hrishikesh123s@gmail.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: James Clark <james.clark@linaro.org> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Krzysztof Łopatowski <krzysztof.m.lopatowski@gmail.com> Cc: Leo Yan <leo.yan@arm.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <pjw@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Quan Zhou <zhouquan@iscas.ac.cn> Cc: Ravi Bangoria <ravi.bangoria@amd.com> Cc: Swapnil Sapkal <swapnil.sapkal@amd.com> Cc: Thomas Falcon <thomas.falcon@intel.com> Cc: Tianyou Li <tianyou.li@intel.com> Cc: Yujie Liu <yujie.liu@intel.com> Cc: tanze <tanze@kylinos.cn> [ Fixed up conflict with "perf inject: Fix itrace branch stack synthesis" series ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
80 lines
3.0 KiB
C
80 lines
3.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef PERF_BUILD_ID_H_
|
|
#define PERF_BUILD_ID_H_ 1
|
|
|
|
#define BUILD_ID_SIZE 20 /* SHA-1 length in bytes */
|
|
#define BUILD_ID_MIN_SIZE 16 /* MD5/UUID/GUID length in bytes */
|
|
#define SBUILD_ID_SIZE (BUILD_ID_SIZE * 2 + 1)
|
|
#define SBUILD_ID_MIN_SIZE (BUILD_ID_MIN_SIZE * 2 + 1)
|
|
|
|
#include "machine.h"
|
|
#include "tool.h"
|
|
#include <linux/types.h>
|
|
|
|
struct build_id {
|
|
u8 data[BUILD_ID_SIZE];
|
|
u8 size;
|
|
};
|
|
|
|
struct dso;
|
|
struct feat_fd;
|
|
struct nsinfo;
|
|
|
|
void build_id__init(struct build_id *bid, const u8 *data, size_t size);
|
|
int build_id__snprintf(const struct build_id *build_id, char *bf, size_t bf_size);
|
|
bool build_id__is_defined(const struct build_id *bid);
|
|
int sysfs__snprintf_build_id(const char *root_dir, char *sbuild_id, size_t sbuild_id_size);
|
|
int filename__snprintf_build_id(const char *pathname, char *sbuild_id, size_t sbuild_id_size);
|
|
char *build_id_cache__kallsyms_path(const char *sbuild_id, char *bf,
|
|
size_t size);
|
|
|
|
char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
|
|
bool is_debug);
|
|
char *__dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
|
|
bool is_debug, bool is_kallsyms);
|
|
|
|
int build_id__mark_dso_hit(const struct perf_tool *tool, union perf_event *event,
|
|
struct perf_sample *sample, struct machine *machine);
|
|
|
|
bool perf_session__read_build_ids(struct perf_session *session, bool with_hits);
|
|
int perf_session__write_buildid_table(struct perf_session *session,
|
|
struct feat_fd *fd);
|
|
int perf_session__cache_build_ids(struct perf_session *session);
|
|
int __perf_session__cache_build_ids(struct perf_session *session,
|
|
machine__dso_t fn, void *priv);
|
|
|
|
char *build_id_cache__origname(const char *sbuild_id);
|
|
char *build_id_cache__linkname(const char *sbuild_id, char *bf, size_t size);
|
|
char *build_id_cache__cachedir(const char *sbuild_id, const char *name,
|
|
struct nsinfo *nsi, bool is_kallsyms,
|
|
bool is_vdso);
|
|
|
|
struct strlist;
|
|
|
|
struct strlist *build_id_cache__list_all(bool validonly);
|
|
char *build_id_cache__complement(const char *incomplete_sbuild_id);
|
|
int build_id_cache__list_build_ids(const char *pathname, struct nsinfo *nsi,
|
|
struct strlist **result);
|
|
bool build_id_cache__cached(const char *sbuild_id);
|
|
int build_id_cache__add(const char *sbuild_id, const char *name, const char *realname,
|
|
struct nsinfo *nsi, bool is_kallsyms, bool is_vdso,
|
|
const char *proper_name, const char *root_dir);
|
|
int __build_id_cache__add_s(const char *sbuild_id,
|
|
const char *name, struct nsinfo *nsi,
|
|
bool is_kallsyms, bool is_vdso,
|
|
const char *proper_name, const char *root_dir);
|
|
static inline int build_id_cache__add_s(const char *sbuild_id,
|
|
const char *name, struct nsinfo *nsi,
|
|
bool is_kallsyms, bool is_vdso)
|
|
{
|
|
return __build_id_cache__add_s(sbuild_id, name, nsi, is_kallsyms, is_vdso, NULL, NULL);
|
|
}
|
|
int build_id_cache__remove_s(const char *sbuild_id);
|
|
|
|
extern char buildid_dir[];
|
|
|
|
void set_buildid_dir(const char *dir);
|
|
void disable_buildid_cache(void);
|
|
|
|
#endif
|