aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/util/synthetic-events.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2020-10-13 21:24:33 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2020-10-14 08:44:47 -0300
commit0aba7f036a56675b7fdc536757b4c49fc76a2208 (patch)
tree02ec0c96f9e8f6d50aeaad0f29ea67ef0b0fd1a9 /tools/perf/util/synthetic-events.c
parentperf config: Export the perf_config_from_file() function (diff)
downloadwireguard-linux-0aba7f036a56675b7fdc536757b4c49fc76a2208.tar.xz
wireguard-linux-0aba7f036a56675b7fdc536757b4c49fc76a2208.zip
perf tools: Use build_id object in dso
Replace build_id byte array with struct build_id object and all the code that references it. The objective is to carry size together with build id array, so it's better to keep both together. This is preparatory change for following patches, and there's no functional change. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20201013192441.1299447-2-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to '')
-rw-r--r--tools/perf/util/synthetic-events.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/synthetic-events.c b/tools/perf/util/synthetic-events.c
index 3ca5d9399680..8a23391558cf 100644
--- a/tools/perf/util/synthetic-events.c
+++ b/tools/perf/util/synthetic-events.c
@@ -1961,7 +1961,7 @@ int perf_event__synthesize_build_id(struct perf_tool *tool, struct dso *pos, u16
len = pos->long_name_len + 1;
len = PERF_ALIGN(len, NAME_ALIGN);
- memcpy(&ev.build_id.build_id, pos->build_id, sizeof(pos->build_id));
+ memcpy(&ev.build_id.build_id, pos->bid.data, sizeof(pos->bid.data));
ev.build_id.header.type = PERF_RECORD_HEADER_BUILD_ID;
ev.build_id.header.misc = misc;
ev.build_id.pid = machine->pid;