Skip to content

Commit

Permalink
net/i40e: fix logging on VF close
Browse files Browse the repository at this point in the history
[ upstream commit 108e9b0 ]

When launch testpmd with VF and quit testpmd, there'll
be lots of messages "i40evf_handle_aq_msg(): Request 0
is not supported yet", which are triggered during VF
reset and VF needn't do anything. So cancel alarm handler
before VF reset to ignore the admin queue messages.

Fixes: e0e6a7f ("net/i40e: cancel alarm handler at the end of closure")

Signed-off-by: Beilei Xing <beilei.xing@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
  • Loading branch information
beileix authored and kevintraynor committed May 7, 2019
1 parent 9960f97 commit 03f418f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/i40e/i40e_ethdev_vf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2261,11 +2261,11 @@ i40evf_dev_close(struct rte_eth_dev *dev)
*/
i40evf_dev_promiscuous_disable(dev);
i40evf_dev_allmulticast_disable(dev);
rte_eal_alarm_cancel(i40evf_dev_alarm_handler, dev);

i40evf_reset_vf(dev);
i40e_shutdown_adminq(hw);
i40evf_disable_irq0(hw);
rte_eal_alarm_cancel(i40evf_dev_alarm_handler, dev);
hw->adapter_closed = 1;
}

Expand Down

0 comments on commit 03f418f

Please sign in to comment.