mirror of https://gitee.com/openkylin/linux.git
nfp: bpf: don't do ld/shifts combination if shifts are jump destination
If any of the shift insns in the ld/shift sequence is jump destination, don't do combination. Signed-off-by: Jiong Wang <jiong.wang@netronome.com> Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
parent
1266f5d655
commit
29fe46efba
|
@ -2181,6 +2181,10 @@ static void nfp_bpf_opt_ld_shift(struct nfp_prog *nfp_prog)
|
|||
if (next1.imm != 0x20 || next2.imm != 0x20)
|
||||
continue;
|
||||
|
||||
if (meta2->flags & FLAG_INSN_IS_JUMP_DST ||
|
||||
meta3->flags & FLAG_INSN_IS_JUMP_DST)
|
||||
continue;
|
||||
|
||||
meta2->skip = true;
|
||||
meta3->skip = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue