OSDN Git Service

libbpf: Fix printf compilation warnings on ppc64le arch
authorAndrii Nakryiko <andriin@fb.com>
Thu, 12 Dec 2019 17:19:18 +0000 (09:19 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 12 Dec 2019 21:47:24 +0000 (13:47 -0800)
commit679152d3a32e305c213f83160c328c37566ae8bc
tree351a0db3db9a691a61ad0678798a1df012b60ad7
parent81c22041d9f19df07b9cba95e3cd02e0f41bc1e1
libbpf: Fix printf compilation warnings on ppc64le arch

On ppc64le __u64 and __s64 are defined as long int and unsigned long int,
respectively. This causes compiler to emit warning when %lld/%llu are used to
printf 64-bit numbers. Fix this by casting to size_t/ssize_t with %zu and %zd
format specifiers, respectively.

v1->v2:
- use size_t/ssize_t instead of custom typedefs (Martin).

Fixes: 1f8e2bcb2cd5 ("libbpf: Refactor relocation handling")
Fixes: abd29c931459 ("libbpf: allow specifying map definitions using BTF")
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Link: https://lore.kernel.org/bpf/20191212171918.638010-1-andriin@fb.com
tools/lib/bpf/libbpf.c