From: David Miller Date: Fri, 12 Oct 2018 05:46:55 +0000 (-0700) Subject: perf cpu_map: Align cpu map synthesized events properly. X-Git-Tag: v4.14.81~190 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1309de40f2e0e47cc05c7b4e7a3637c5e71a89af;p=platform%2Fkernel%2Flinux-rpi.git perf cpu_map: Align cpu map synthesized events properly. [ Upstream commit 0ed149cf5239cc6e7e65bf00f769e8f1e91076c0 ] The size of the resulting cpu map can be smaller than a multiple of sizeof(u64), resulting in SIGBUS on cpus like Sparc as the next event will not be aligned properly. Signed-off-by: David S. Miller Cc: Jiri Olsa Cc: Kan Liang Fixes: 6c872901af07 ("perf cpu_map: Add cpu_map event synthesize function") Link: http://lkml.kernel.org/r/20181011.224655.716771175766946817.davem@davemloft.net Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c index fc690fe..a19e840 100644 --- a/tools/perf/util/event.c +++ b/tools/perf/util/event.c @@ -951,6 +951,7 @@ void *cpu_map_data__alloc(struct cpu_map *map, size_t *size, u16 *type, int *max } *size += sizeof(struct cpu_map_data); + *size = PERF_ALIGN(*size, sizeof(u64)); return zalloc(*size); }