libbpf: fix u64-to-pointer cast on 32-bit arches
authorAndrii Nakryiko <andrii@kernel.org>
Tue, 19 Mar 2024 21:51:43 +0000 (14:51 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Wed, 20 Mar 2024 05:54:04 +0000 (22:54 -0700)
commit5ab8cb89dbb6f3e111c8b0a9a86496da23c94439
treee39824b931c665dba7872599e8d7a3982292e036
parent7ded842b356d151ece8ac4985940438e6d3998bb
libbpf: fix u64-to-pointer cast on 32-bit arches

It's been reported that (void *)map->map_extra is causing compilation
warnings on 32-bit architectures. It's easy enough to fix this by
casting to long first.

Fixes: 79ff13e99169 ("libbpf: Add support for bpf_arena.")
Reported-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Message-ID: <20240319215143.1279312-1-andrii@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/lib/bpf/libbpf.c