net/i40e: fix virtchnl message response timeout
authorBeilei Xing <beilei.xing@intel.com>
Mon, 17 Jul 2017 07:33:09 +0000 (15:33 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 19 Jul 2017 08:09:13 +0000 (11:09 +0300)
commit5b1324145c80e6dcfbc61bb7fd5fe2269a320342
tree88e77530474cbdc6fa0b6bdfdfd8d5dca7a1035b
parent6a8cbb31ff531bd78f2560d6080514ed471c3308
net/i40e: fix virtchnl message response timeout

PF driver and VF driver communicated with each other by virtual
channel message. When VF sends message to PF to enable some
offload capability, PF should response if it is successful or not.
VIRTCHNL_OP_ENABLE_VLAN_STRIPPING is a new added message and the
old PF driver doesn’t support that. So no response is received by
DPDK VF. Then VF is blocked on this message and cannot roll back.
This patch clears pending command on VF side when the waiting duration
expires to avoid blocking following communication.

Fixes: 5f0b95d59a98 ("net/i40e: support VLAN stripping for VF")
Cc: stable@dpdk.org
Signed-off-by: Beilei Xing <beilei.xing@intel.com>
drivers/net/i40e/i40e_ethdev_vf.c