Re: [dpdk-dev] [PATCH] net/i40e: fix incorrect var assignment

2017-09-14 Thread Xing, Beilei
> -Original Message- > From: Wu, Jingjing > Sent: Thursday, September 14, 2017 1:31 AM > To: Xing, Beilei > Cc: dev@dpdk.org; Wu, Jingjing ; sta...@dpdk.org > Subject: [PATCH] net/i40e: fix incorrect var assignment > > rx/tx_queue_setup functions are shared between PF and VF drivers. So

[dpdk-dev] [PATCH] net/i40e: fix incorrect var assignment

2017-09-13 Thread Jingjing Wu
rx/tx_queue_setup functions are shared between PF and VF drivers. So the var 'pf' should not be assigned at the beginning. This patch fixes the issue, and also corrects the return err code. Cc: sta...@dpdk.org Fixes: b6583ee40265 ("i40e: full VMDQ pools support") Signed-off-by: Jingjing Wu ---