[dpdk-dev] [PATCH v1 1/1] ixgbe: fix queue stop

2016-04-21 Thread Bruce Richardson
> Cc: dev at dpdk.org; Azarewicz, PiotrX T > > Subject: [dpdk-dev] [PATCH v1 1/1] ixgbe: fix queue stop > > > > It should be checked if queue enable bit is clear. > > > > CID 13215 : Wrong operator used (CONSTANT_EXPRESSION_RESULT) > > operator_confusion: txd

[dpdk-dev] [PATCH v1 1/1] ixgbe: fix queue stop

2016-04-15 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Piotr Azarewicz > Sent: Thursday, April 14, 2016 6:00 PM > To: Zhang, Helin; Ananyev, Konstantin > Cc: dev at dpdk.org; Azarewicz, PiotrX T > Subject: [dpdk-dev] [PATCH v1 1/1] ixg

[dpdk-dev] [PATCH v1 1/1] ixgbe: fix queue stop

2016-04-14 Thread Piotr Azarewicz
It should be checked if queue enable bit is clear. CID 13215 : Wrong operator used (CONSTANT_EXPRESSION_RESULT) operator_confusion: txdctl | 33554432 is always 1/true regardless of the values of its operand. This occurs as the logical second operand of '&&'. CID 13216 : Wrong operator used