diff options
author | 2024-06-14 23:24:08 -0300 | |
---|---|---|
committer | 2024-06-20 19:50:26 -0700 | |
commit | 9919c5c98cb25dbf7e76aadb9beab55a2a25f830 (patch) | |
tree | c399342992d107b9aa03abe120d9950ba635073d /include/linux/filter.h | |
parent | Merge branch 'bpf-verifier-correct-tail_call_reachable-for-bpf-prog' (diff) | |
download | wireguard-linux-9919c5c98cb25dbf7e76aadb9beab55a2a25f830.tar.xz wireguard-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 'include/linux/filter.h')
-rw-r--r-- | include/linux/filter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/filter.h b/include/linux/filter.h index b02aea291b7e..dd41a93f06b2 100644 --- a/include/linux/filter.h +++ b/include/linux/filter.h @@ -1129,8 +1129,7 @@ bpf_jit_binary_pack_alloc(unsigned int proglen, u8 **ro_image, struct bpf_binary_header **rw_hdr, u8 **rw_image, bpf_jit_fill_hole_t bpf_fill_ill_insns); -int bpf_jit_binary_pack_finalize(struct bpf_prog *prog, - struct bpf_binary_header *ro_header, +int bpf_jit_binary_pack_finalize(struct bpf_binary_header *ro_header, struct bpf_binary_header *rw_header); void bpf_jit_binary_pack_free(struct bpf_binary_header *ro_header, struct bpf_binary_header *rw_header); |