[dpdk-dev] [PATCH 18/39] net/ixgbe/base: fix check on NACK

2016-09-23 Thread Wang, Xiao W
Hi Ferruh, > -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, September 20, 2016 1:07 AM > To: Wang, Xiao W ; Lu, Wenzhuo > > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 18/39] net/ixgbe/base: fix check on NACK > > On 8/27/2016 4:48 PM, Xiao

[dpdk-dev] [PATCH 18/39] net/ixgbe/base: fix check on NACK

2016-09-19 Thread Ferruh Yigit
On 8/27/2016 4:48 PM, Xiao Wang wrote: > Previously we checked only msgbuf[0] for "return buffer" instead of msgbuf[0] ? > (IXGBE_VF_SET_MACVLAN | IXGBE_VT_MSGTYPE_NACK), but this would not > work if index != 0 and as a result NACK will not be detected. "write buffer is not 0" instead of "index

[dpdk-dev] [PATCH 18/39] net/ixgbe/base: fix check on NACK

2016-08-27 Thread Xiao Wang
Previously we checked only msgbuf[0] for (IXGBE_VF_SET_MACVLAN | IXGBE_VT_MSGTYPE_NACK), but this would not work if index != 0 and as a result NACK will not be detected. Fixes: af75078fece3 ("first public release") Signed-off-by: Xiao Wang --- drivers/net/ixgbe/base/ixgbe_vf.c | 18 ---