bpf: arm64: Enable arm64 jit to provide bpf_line_info

This patch enables arm64's bpf_int_jit_compile() to provide
bpf_line_info by calling bpf_prog_fill_jited_linfo().

Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
Martin KaFai Lau 2018-12-11 16:02:05 -08:00 committed by Daniel Borkmann
parent 0bd72117fb
commit 37ab566c17
1 changed files with 1 additions and 0 deletions

View File

@ -932,6 +932,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
prog->jited_len = image_size; prog->jited_len = image_size;
if (!prog->is_func || extra_pass) { if (!prog->is_func || extra_pass) {
bpf_prog_fill_jited_linfo(prog, ctx.offset);
out_off: out_off:
kfree(ctx.offset); kfree(ctx.offset);
kfree(jit_data); kfree(jit_data);