mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
s390/bpf,jit: use generic jit dumper
This is the s390 backend of 79617801
"filter: bpf_jit_comp: refactor
and unify BPF JIT image dump output".
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
1eeb74782d
commit
fee1b5488d
1 changed files with 2 additions and 8 deletions
|
@ -787,15 +787,9 @@ void bpf_jit_compile(struct sk_filter *fp)
|
|||
cjit = jit;
|
||||
}
|
||||
if (bpf_jit_enable > 1) {
|
||||
pr_err("flen=%d proglen=%lu pass=%d image=%p\n",
|
||||
fp->len, jit.end - jit.start, pass, jit.start);
|
||||
if (jit.start) {
|
||||
printk(KERN_ERR "JIT code:\n");
|
||||
bpf_jit_dump(fp->len, jit.end - jit.start, pass, jit.start);
|
||||
if (jit.start)
|
||||
print_fn_code(jit.start, jit.mid - jit.start);
|
||||
print_hex_dump(KERN_ERR, "JIT literals:\n",
|
||||
DUMP_PREFIX_ADDRESS, 16, 1,
|
||||
jit.mid, jit.end - jit.mid, false);
|
||||
}
|
||||
}
|
||||
if (jit.start)
|
||||
fp->bpf_func = (void *) jit.start;
|
||||
|
|
Loading…
Reference in a new issue