Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf data: Fix building in 32 bit platform with libbabeltrace

On ARM32 building it report following error when we build with
libbabeltrace:

util/data-convert-bt.c: In function 'add_bpf_output_values':
util/data-convert-bt.c:440:3: error: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Werror=format]
cc1: all warnings being treated as errors

Fix it by changing %lu to %zu.

Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Fixes: 6122d57e9f7c ("perf data: Support converting data from bpf_perf_event_output()")
Link: http://lkml.kernel.org/r/1475035126-146587-1-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Wang Nan and committed by
Arnaldo Carvalho de Melo
f2c8852e 973186ca

+1 -1
+1 -1
tools/perf/util/data-convert-bt.c
··· 437 437 int ret; 438 438 439 439 if (nr_elements * sizeof(u32) != raw_size) 440 - pr_warning("Incorrect raw_size (%u) in bpf output event, skip %lu bytes\n", 440 + pr_warning("Incorrect raw_size (%u) in bpf output event, skip %zu bytes\n", 441 441 raw_size, nr_elements * sizeof(u32) - raw_size); 442 442 443 443 len_type = bt_ctf_event_class_get_field_by_name(event_class, "raw_len");