Re: [dpdk-dev] [PATCH] bpf: fix unreachable statement

2021-05-05 Thread Thomas Monjalon
22/04/2021 13:23, Ananyev, Konstantin: > > From: HongBo Zheng > > > > In function 'eval_jcc', judgment 'op == EBPF_JLT' occurs > > twice, as a result, the corresponding second statement > > cannot be accessed. > > > > This patch fix this problem. > > > > Fixes: 8021917293d0 ("bpf: add extra val

Re: [dpdk-dev] [PATCH] bpf: fix unreachable statement

2021-04-22 Thread Ananyev, Konstantin
> From: HongBo Zheng > > In function 'eval_jcc', judgment 'op == EBPF_JLT' occurs > twice, as a result, the corresponding second statement > cannot be accessed. > > This patch fix this problem. > > Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") > Cc: sta...@dpdk.org

[dpdk-dev] [PATCH] bpf: fix unreachable statement

2021-04-22 Thread Min Hu (Connor)
From: HongBo Zheng In function 'eval_jcc', judgment 'op == EBPF_JLT' occurs twice, as a result, the corresponding second statement cannot be accessed. This patch fix this problem. Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") Cc: sta...@dpdk.org Signed-off-by: HongBo