From 63741c99a6681192b4a60acce6e0b7e0810941cc Mon Sep 17 00:00:00 2001 From: Dapeng Yu Date: Thu, 28 Oct 2021 17:34:43 +0800 Subject: [PATCH] net/ice: remove VSI update on DCF reset by PF After DCF is reset by PF, the VSI update service is unable to be completed since the DCF resource is invalid. This patch removes the call to service that updates VSI since it is useless and output too many error messages. Fixes: c7e1a1a3bfeb ("net/ice: refactor DCF VLAN handling") Cc: stable@dpdk.org Signed-off-by: Dapeng Yu Acked-by: Qi Zhang --- drivers/net/ice/ice_dcf_parent.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ice/ice_dcf_parent.c b/drivers/net/ice/ice_dcf_parent.c index 04078345eb..1ff2c47172 100644 --- a/drivers/net/ice/ice_dcf_parent.c +++ b/drivers/net/ice/ice_dcf_parent.c @@ -233,7 +233,6 @@ ice_dcf_handle_pf_event_msg(struct ice_dcf_hw *dcf_hw, switch (pf_msg->event) { case VIRTCHNL_EVENT_RESET_IMPENDING: PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event"); - start_vsi_reset_thread(dcf_hw, false, 0); dcf_hw->resetting = true; break; case VIRTCHNL_EVENT_LINK_CHANGE: -- 2.39.5