diff options
| author | Alexander Duyck <alexander.h.duyck@intel.com> | 2011-08-26 07:45:47 +0000 | 
|---|---|---|
| committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-10-07 22:44:05 -0700 | 
| commit | 0ba829943c5180d458cd8fc37c37fa08773209e1 (patch) | |
| tree | d9d5a2ad489448048099d4160390634f0baa21ec /drivers/net/ethernet/intel/igb/igb_ethtool.c | |
| parent | 866cff06903ed63b7410c75ce8d4e0c86127a563 (diff) | |
| download | olio-linux-3.10-0ba829943c5180d458cd8fc37c37fa08773209e1.tar.xz olio-linux-3.10-0ba829943c5180d458cd8fc37c37fa08773209e1.zip  | |
igb: Move ITR related data into work container within the q_vector
This change moves information related to interrupt throttle rate
configuration into a separate q_vector sub-structure called a work
container. A similar change has already been made for ixgbe and this work
is based off of that.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Tested-by:  Aaron Brown  <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/igb/igb_ethtool.c')
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb_ethtool.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/igb/igb_ethtool.c b/drivers/net/ethernet/intel/igb/igb_ethtool.c index a893da134d9..5ebe992010d 100644 --- a/drivers/net/ethernet/intel/igb/igb_ethtool.c +++ b/drivers/net/ethernet/intel/igb/igb_ethtool.c @@ -2013,8 +2013,8 @@ static int igb_set_coalesce(struct net_device *netdev,  	for (i = 0; i < adapter->num_q_vectors; i++) {  		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		q_vector->tx_work_limit = adapter->tx_work_limit; -		if (q_vector->rx_ring) +		q_vector->tx.work_limit = adapter->tx_work_limit; +		if (q_vector->rx.ring)  			q_vector->itr_val = adapter->rx_itr_setting;  		else  			q_vector->itr_val = adapter->tx_itr_setting;  |