Re: [dpdk-dev] [PATCH] ethdev: fix check of rx configure

2020-11-03 Thread wangyunjian
> -Original Message- > From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > Sent: Tuesday, November 3, 2020 9:58 PM > To: wangyunjian ; dev@dpdk.org > Cc: tho...@monjalon.net; andrew.rybche...@oktetlabs.ru; Lilijun (Jerry) > ; xudingke > Subject: Re: [dpdk-dev] [PAT

Re: [dpdk-dev] [PATCH] ethdev: fix check of rx configure

2020-11-03 Thread Ferruh Yigit
On 11/3/2020 1:31 PM, wangyunjian wrote: From: Yunjian Wang Coverity flags that 'rx_conf' variable is used before it's checked for NULL. This patch fixes this issue. Coverity issue: 363570 Fixes: 4ff702b5dfa9 ("ethdev: introduce Rx buffer split") Signed-off-by: Yunjian Wang --- lib/librte_

[dpdk-dev] [PATCH] ethdev: fix check of rx configure

2020-11-03 Thread wangyunjian
From: Yunjian Wang Coverity flags that 'rx_conf' variable is used before it's checked for NULL. This patch fixes this issue. Coverity issue: 363570 Fixes: 4ff702b5dfa9 ("ethdev: introduce Rx buffer split") Signed-off-by: Yunjian Wang --- lib/librte_ethdev/rte_ethdev.c | 9 + 1 file ch