mirror of https://gitee.com/openkylin/linux.git
i40e: Fix for unexpected messaging
This fixes an issue where a previously removed message has returned. Changing the message type to dev_dbg leaves the info, if desired, but takes it out of normal everyday usage. Also changed call to only provide port data when its valid and not when its not (delete case). Change-ID: Ief6f33b915f6364c24fa8e5789c2fc3168b5e2ed Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
3fe06f415b
commit
730a8f8777
|
@ -7109,12 +7109,13 @@ static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
|
|||
ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
|
||||
|
||||
if (ret) {
|
||||
dev_info(&pf->pdev->dev,
|
||||
"%s vxlan port %d, index %d failed, err %s aq_err %s\n",
|
||||
port ? "add" : "delete",
|
||||
ntohs(port), i,
|
||||
i40e_stat_str(&pf->hw, ret),
|
||||
i40e_aq_str(&pf->hw,
|
||||
dev_dbg(&pf->pdev->dev,
|
||||
"%s %s port %d, index %d failed, err %s aq_err %s\n",
|
||||
pf->udp_ports[i].type ? "vxlan" : "geneve",
|
||||
port ? "add" : "delete",
|
||||
ntohs(port), i,
|
||||
i40e_stat_str(&pf->hw, ret),
|
||||
i40e_aq_str(&pf->hw,
|
||||
pf->hw.aq.asq_last_status));
|
||||
pf->udp_ports[i].index = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue