i40e: Fix for unexpected messaging
authorCarolyn Wyborny <carolyn.wyborny@intel.com>
Thu, 18 Feb 2016 00:12:16 +0000 (16:12 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 19 Feb 2016 07:46:17 +0000 (23:46 -0800)
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>
drivers/net/ethernet/intel/i40e/i40e_main.c

index 53660f1..05def9f 100644 (file)
@@ -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;
                        }