net/txgbe: fix queue statistics mapping
authorWeiguo Li <liwg06@foxmail.com>
Tue, 1 Mar 2022 06:08:30 +0000 (14:08 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 2 Mar 2022 17:28:49 +0000 (18:28 +0100)
commitf69467177fa34afaeeeae81ad83142121ee1bc98
treeb4a8f3d7cbedcb95cff60fece719db55f97ff108
parent57461cab161ac2c8cc1a96711efba9a8fa519358
net/txgbe: fix queue statistics mapping

Since boolean value is in 0 and 1, it's strange to combines a boolean
value with a bit operator.

Thus it's highly possible a typo error with "if (A & !B)", and more
probably to use "if (A & ~B)" instead.

Fixes: c1d4e9d37abd ("net/txgbe: add queue stats mapping")
Cc: stable@dpdk.org
Signed-off-by: Weiguo Li <liwg06@foxmail.com>
Acked-by: Jiawen Wu <jiawenwu@trustnetic.com>
drivers/net/txgbe/txgbe_ethdev.c