mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-07 22:54:07 +00:00
Use bpf_jit_binary_pack_alloc in powerpc jit. The jit engine first
writes the program to the rw buffer. When the jit is done, the program
is copied to the final location with bpf_jit_binary_pack_finalize.
With multiple jit_subprogs, bpf_jit_free is called on some subprograms
that haven't got bpf_jit_binary_pack_finalize() yet. Implement custom
bpf_jit_free() like in commit
|
||
|---|---|---|
| .. | ||
| bpf_jit_comp32.c | ||
| bpf_jit_comp64.c | ||
| bpf_jit_comp.c | ||
| bpf_jit.h | ||
| Makefile | ||