libbpf: Fix build warning on ref_ctr_off for 32-bit architectures
authorKhem Raj <raj.khem@gmail.com>
Mon, 19 Dec 2022 19:15:26 +0000 (11:15 -0800)
committerAndrii Nakryiko <andrii@kernel.org>
Tue, 20 Dec 2022 23:55:14 +0000 (15:55 -0800)
Clang warns on 32-bit ARM on this comparision:

libbpf.c:10497:18: error: result of comparison of constant 4294967296 with expression of type 'size_t' (aka 'unsigned int') is always false [-Werror,-Wtautological-constant-out-of-range-compare]
        if (ref_ctr_off >= (1ULL << PERF_UPROBE_REF_CTR_OFFSET_BITS))
            ~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Typecast ref_ctr_off to __u64 in the check conditional, it is false on
32bit anyways.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20221219191526.296264-1-raj.khem@gmail.com
tools/lib/bpf/libbpf.c

index 2a82f49..a5c67a3 100644 (file)
@@ -9903,7 +9903,7 @@ static int perf_event_open_probe(bool uprobe, bool retprobe, const char *name,
        char errmsg[STRERR_BUFSIZE];
        int type, pfd;
 
-       if (ref_ctr_off >= (1ULL << PERF_UPROBE_REF_CTR_OFFSET_BITS))
+       if ((__u64)ref_ctr_off >= (1ULL << PERF_UPROBE_REF_CTR_OFFSET_BITS))
                return -EINVAL;
 
        memset(&attr, 0, attr_sz);