]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
i40e: Fix for unexpected messaging
authorCarolyn Wyborny <carolyn.wyborny@intel.com>
Thu, 18 Feb 2016 00:12:16 +0000 (16:12 -0800)
committerChuck Anderson <chuck.anderson@oracle.com>
Thu, 10 Mar 2016 16:37:48 +0000 (08:37 -0800)
Orabug: 22342532

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>
(cherry picked from commit 730a8f8777e55912f445c2c29234d51cceb1dfc2)
Signed-off-by: Brian Maly <brian.maly@oracle.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index 93623488f5981d587a10448356e053b166e76725..49adad4b504ed6b7ebc2d10e3c947f105b4cae42 100644 (file)
@@ -7055,12 +7055,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;
                        }