| 335 | } |
| 336 | |
| 337 | static struct bpf_program_buffer* |
| 338 | bpf_program_buffer_alloc(size_t size, int flags) |
| 339 | { |
| 340 | |
| 341 | return (malloc(sizeof(struct bpf_program_buffer) + size, |
| 342 | M_BPF, flags)); |
| 343 | } |
| 344 | |
| 345 | static void |
| 346 | bpf_program_buffer_free(epoch_context_t ctx) |