aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-inject.c
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2021-11-25 09:14:57 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-12-06 21:57:52 -0300
commitc29d9792607e67ed8a3f6e9db0d96836d885a8c5 (patch)
tree4f3934b7ef0c7256ff41ca99fc3732042eebc01e /tools/perf/builtin-inject.c
parenttools headers UAPI: Sync s390 syscall table file changed by new futex_waitv syscall (diff)
downloadlinux-dev-c29d9792607e67ed8a3f6e9db0d96836d885a8c5.tar.xz
linux-dev-c29d9792607e67ed8a3f6e9db0d96836d885a8c5.zip
perf inject: Fix itrace space allowed for new attributes
The space allowed for new attributes can be too small if existing header information is large. That can happen, for example, if there are very many CPUs, due to having an event ID per CPU per event being stored in the header information. Fix by adding the existing header.data_offset. Also increase the extra space allowed to 8KiB and align to a 4KiB boundary for neatness. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Link: http://lore.kernel.org/lkml/20211125071457.2066863-1-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-inject.c')
-rw-r--r--tools/perf/builtin-inject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c
index bc5259db5fd9..b9d6306cc14e 100644
--- a/tools/perf/builtin-inject.c
+++ b/tools/perf/builtin-inject.c
@@ -820,7 +820,7 @@ static int __cmd_inject(struct perf_inject *inject)
inject->tool.ordered_events = true;
inject->tool.ordering_requires_timestamps = true;
/* Allow space in the header for new attributes */
- output_data_offset = 4096;
+ output_data_offset = roundup(8192 + session->header.data_offset, 4096);
if (inject->strip)
strip_init(inject);
}