]> git.karo-electronics.de Git - linux-beck.git/commitdiff
i40e: Add method to keep track of current rxnfc settings
authorCarolyn Wyborny <carolyn.wyborny@intel.com>
Fri, 6 Feb 2015 08:52:09 +0000 (08:52 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 25 Feb 2015 04:44:40 +0000 (20:44 -0800)
This patch adds a struct to the VSI struct to keep track of rxnfc
settings done via ethtool.  Without this patch, the device can only
list the options available, not the current settings and this is not
clear to the user.  Without current settings, the available settings
never changing looks like a bug.

Also update the copyright year.

Change-ID: I087bbfdb33b330496a671630a7586773e3b3e589
Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com>
Tested-by: Jim Young <james.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e.h
drivers/net/ethernet/intel/i40e/i40e_ethtool.c

index 5912fdf506a7849fa99d4d6b124193a6f7757252..3ee730dab82dc0ea03d6dd1cfcfd7fe91b87d865 100644 (file)
@@ -1,7 +1,7 @@
 /*******************************************************************************
  *
  * Intel Ethernet Controller XL710 Family Linux Driver
- * Copyright(c) 2013 - 2014 Intel Corporation.
+ * Copyright(c) 2013 - 2015 Intel Corporation.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms and conditions of the GNU General Public License,
@@ -505,6 +505,9 @@ struct i40e_vsi {
 
        /* VSI specific handlers */
        irqreturn_t (*irq_handler)(int irq, void *data);
+
+       /* current rxnfc data */
+       struct ethtool_rxnfc rxnfc; /* current rss hash opts */
 } ____cacheline_internodealigned_in_smp;
 
 struct i40e_netdev_priv {
index 5854460a34ffbe2b6c52fca3e709ae7c3e3da180..5ef77dd3763eb66a717b5b612b1b53db6e6b50ac 100644 (file)
@@ -1741,6 +1741,11 @@ static int i40e_get_rss_hash_opts(struct i40e_pf *pf, struct ethtool_rxnfc *cmd)
 {
        cmd->data = 0;
 
+       if (pf->vsi[pf->lan_vsi]->rxnfc.data != 0) {
+               cmd->data = pf->vsi[pf->lan_vsi]->rxnfc.data;
+               cmd->flow_type = pf->vsi[pf->lan_vsi]->rxnfc.flow_type;
+               return 0;
+       }
        /* Report default options for RSS on i40e */
        switch (cmd->flow_type) {
        case TCP_V4_FLOW:
@@ -2012,6 +2017,9 @@ static int i40e_set_rss_hash_opt(struct i40e_pf *pf, struct ethtool_rxnfc *nfc)
        wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
        i40e_flush(hw);
 
+       /* Save setting for future output/update */
+       pf->vsi[pf->lan_vsi]->rxnfc = *nfc;
+
        return 0;
 }