diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-03-21 17:22:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-03-21 17:25:56 -0400 |
commit | 79617801ea0c0e6664cb497d4c1892c2ff407364 (patch) | |
tree | 5c1f4af6a7c3a6e13a33f054d7c58dee146f15e3 /arch/x86/net | |
parent | d5e07e69218fd9aa21d6c8c5ccc629d92bdb9b0f (diff) |
filter: bpf_jit_comp: refactor and unify BPF JIT image dump output
If bpf_jit_enable > 1, then we dump the emitted JIT compiled image
after creation. Currently, only SPARC and PowerPC has similar output
as in the reference implementation on x86_64. Make a small helper
function in order to reduce duplicated code and make the dump output
uniform across architectures x86_64, SPARC, PPC, ARM (e.g. on ARM
flen, pass and proglen are currently not shown, but would be
interesting to know as well), also for future BPF JIT implementations
on other archs.
Cc: Mircea Gherzan <mgherzan@gmail.com>
Cc: Matt Evans <matt@ozlabs.org>
Cc: Eric Dumazet <eric.dumazet@google.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/x86/net')
-rw-r--r-- | arch/x86/net/bpf_jit_comp.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c index 3cbe45381bbb..f66b54086ce5 100644 --- a/arch/x86/net/bpf_jit_comp.c +++ b/arch/x86/net/bpf_jit_comp.c | |||
@@ -725,17 +725,12 @@ cond_branch: f_offset = addrs[i + filter[i].jf] - addrs[i]; | |||
725 | } | 725 | } |
726 | oldproglen = proglen; | 726 | oldproglen = proglen; |
727 | } | 727 | } |
728 | |||
728 | if (bpf_jit_enable > 1) | 729 | if (bpf_jit_enable > 1) |
729 | pr_err("flen=%d proglen=%u pass=%d image=%p\n", | 730 | bpf_jit_dump(flen, proglen, pass, image); |
730 | flen, proglen, pass, image); | ||
731 | 731 | ||
732 | if (image) { | 732 | if (image) { |
733 | if (bpf_jit_enable > 1) | ||
734 | print_hex_dump(KERN_ERR, "JIT code: ", DUMP_PREFIX_ADDRESS, | ||
735 | 16, 1, image, proglen, false); | ||
736 | |||
737 | bpf_flush_icache(image, image + proglen); | 733 | bpf_flush_icache(image, image + proglen); |
738 | |||
739 | fp->bpf_func = (void *)image; | 734 | fp->bpf_func = (void *)image; |
740 | } | 735 | } |
741 | out: | 736 | out: |