diff options
author | Martin KaFai Lau <[email protected]> | 2017-06-05 12:15:51 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2017-06-06 15:41:24 -0400 |
commit | 783d28dd11f68fb25d1f2e0de7c42336394ef128 (patch) | |
tree | ccbd420f78dba2d72eb9a697e9b251b8bdd80ebd /arch/sparc/net/bpf_jit_comp_64.c | |
parent | bd5f5f4ecb78e2698dad655645b6d6a2f7012a8c (diff) |
bpf: Add jited_len to struct bpf_prog
Add jited_len to struct bpf_prog. It will be
useful for the struct bpf_prog_info which will
be added in the later patch.
Signed-off-by: Martin KaFai Lau <[email protected]>
Acked-by: Alexei Starovoitov <[email protected]>
Acked-by: Daniel Borkmann <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'arch/sparc/net/bpf_jit_comp_64.c')
-rw-r--r-- | arch/sparc/net/bpf_jit_comp_64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc/net/bpf_jit_comp_64.c b/arch/sparc/net/bpf_jit_comp_64.c index 098874a81f6e..8799ae9a8788 100644 --- a/arch/sparc/net/bpf_jit_comp_64.c +++ b/arch/sparc/net/bpf_jit_comp_64.c @@ -1560,6 +1560,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog) prog->bpf_func = (void *)ctx.image; prog->jited = 1; + prog->jited_len = image_size; out_off: kfree(ctx.offset); |