diff options
author | Rafael Passos <rafael@rcpassos.me> | 2024-06-14 23:24:08 -0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-06-20 19:50:26 -0700 |
commit | 9919c5c98cb25dbf7e76aadb9beab55a2a25f830 (patch) | |
tree | c399342992d107b9aa03abe120d9950ba635073d /arch/x86/net/bpf_jit_comp.c | |
parent | 3b06304370931f90cd6f50ea9dd55603429b13dc (diff) | |
download | linux-9919c5c98cb25dbf7e76aadb9beab55a2a25f830.tar.gz linux-9919c5c98cb25dbf7e76aadb9beab55a2a25f830.tar.bz2 linux-9919c5c98cb25dbf7e76aadb9beab55a2a25f830.zip |
bpf: remove unused parameter in bpf_jit_binary_pack_finalize
Fixes a compiler warning. the bpf_jit_binary_pack_finalize function
was taking an extra bpf_prog parameter that went unused.
This removves it and updates the callers accordingly.
Signed-off-by: Rafael Passos <rafael@rcpassos.me>
Link: https://lore.kernel.org/r/20240615022641.210320-2-rafael@rcpassos.me
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'arch/x86/net/bpf_jit_comp.c')
-rw-r--r-- | arch/x86/net/bpf_jit_comp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c index 7c130001fbfe..d25d81c8ecc0 100644 --- a/arch/x86/net/bpf_jit_comp.c +++ b/arch/x86/net/bpf_jit_comp.c @@ -3356,7 +3356,7 @@ out_image: * * Both cases are serious bugs and justify WARN_ON. */ - if (WARN_ON(bpf_jit_binary_pack_finalize(prog, header, rw_header))) { + if (WARN_ON(bpf_jit_binary_pack_finalize(header, rw_header))) { /* header has been freed */ header = NULL; goto out_image; @@ -3435,7 +3435,7 @@ void bpf_jit_free(struct bpf_prog *prog) * before freeing it. */ if (jit_data) { - bpf_jit_binary_pack_finalize(prog, jit_data->header, + bpf_jit_binary_pack_finalize(jit_data->header, jit_data->rw_header); kvfree(jit_data->addrs); kfree(jit_data); |