Re: [dpdk-dev] [PATCH] net/bnxt: fix incorrect boolean operator usage

2020-10-26 Thread Ajit Khaparde
On Thu, Oct 22, 2020 at 11:45 AM Lance Richardson wrote: > > Use boolean AND operator instead of bitwise operator. > > Coverity issue: 323488 > Fixes: b42c15c83e88 ("net/bnxt: support trusted VF") > Signed-off-by: Lance Richardson > Reviewed-by: Ajit Khaparde Patch applied to dpdk-next-net-brcm.

[dpdk-dev] [PATCH] net/bnxt: fix incorrect boolean operator usage

2020-10-22 Thread Lance Richardson
Use boolean AND operator instead of bitwise operator. Coverity issue: 323488 Fixes: b42c15c83e88 ("net/bnxt: support trusted VF") Signed-off-by: Lance Richardson Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/bnxt_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dri