samples/bpf: replace meaningless counter with tracex4
authorDaniel T. Lee <danieltimlee@gmail.com>
Sun, 18 Dec 2022 06:14:52 +0000 (15:14 +0900)
committerMartin KaFai Lau <martin.lau@kernel.org>
Mon, 19 Dec 2022 22:21:05 +0000 (14:21 -0800)
commit71135b77aac75769f6dae81ac4725405f1015d22
treea6635a80c7e1ac3eb5bba64a534532084650ed6a
parent13aa2a92840dd49a64362ddd1e4d16084a4b9e0f
samples/bpf: replace meaningless counter with tracex4

Currently, compiling samples/bpf with LLVM warns about the unused but
set variable with tracex4_user.

    ./samples/bpf/tracex4_user.c:54:14:
    warning: variable 'i' set but not used [-Wunused-but-set-variable]
        int map_fd, i, j = 0;
                    ^
                    1 warning generated.

This commit resolve this compiler warning by replacing the meaningless
counter.

Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/r/20221218061453.6287-3-danieltimlee@gmail.com
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
samples/bpf/tracex4_user.c