diff options
Diffstat (limited to 'drivers/net/ethernet/intel/igb/igb_main.c')
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb_main.c | 25 | 
1 files changed, 12 insertions, 13 deletions
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index a45cd2b416c8..038a9fd1af44 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c @@ -1921,8 +1921,8 @@ static void igb_setup_tx_mode(struct igb_adapter *adapter)  		 */  		val = rd32(E1000_TXPBS);  		val &= ~I210_TXPBSIZE_MASK; -		val |= I210_TXPBSIZE_PB0_8KB | I210_TXPBSIZE_PB1_8KB | -			I210_TXPBSIZE_PB2_4KB | I210_TXPBSIZE_PB3_4KB; +		val |= I210_TXPBSIZE_PB0_6KB | I210_TXPBSIZE_PB1_6KB | +			I210_TXPBSIZE_PB2_6KB | I210_TXPBSIZE_PB3_6KB;  		wr32(E1000_TXPBS, val);  		val = rd32(E1000_RXPBS); @@ -2037,7 +2037,7 @@ static void igb_power_down_link(struct igb_adapter *adapter)  }  /** - * Detect and switch function for Media Auto Sense + * igb_check_swap_media -  Detect and switch function for Media Auto Sense   * @adapter: address of the board private structure   **/  static void igb_check_swap_media(struct igb_adapter *adapter) @@ -2934,7 +2934,7 @@ static int igb_xdp_xmit(struct net_device *dev, int n,  	int cpu = smp_processor_id();  	struct igb_ring *tx_ring;  	struct netdev_queue *nq; -	int drops = 0; +	int nxmit = 0;  	int i;  	if (unlikely(test_bit(__IGB_DOWN, &adapter->state))) @@ -2961,10 +2961,9 @@ static int igb_xdp_xmit(struct net_device *dev, int n,  		int err;  		err = igb_xmit_xdp_ring(adapter, tx_ring, xdpf); -		if (err != IGB_XDP_TX) { -			xdp_return_frame_rx_napi(xdpf); -			drops++; -		} +		if (err != IGB_XDP_TX) +			break; +		nxmit++;  	}  	__netif_tx_unlock(nq); @@ -2972,7 +2971,7 @@ static int igb_xdp_xmit(struct net_device *dev, int n,  	if (unlikely(flags & XDP_XMIT_FLUSH))  		igb_xdp_ring_update_tail(tx_ring); -	return n - drops; +	return nxmit;  }  static const struct net_device_ops igb_netdev_ops = { @@ -3115,7 +3114,7 @@ static s32 igb_init_i2c(struct igb_adapter *adapter)  		return 0;  	/* Initialize the i2c bus which is controlled by the registers. -	 * This bus will use the i2c_algo_bit structue that implements +	 * This bus will use the i2c_algo_bit structure that implements  	 * the protocol through toggling of the 4 bits in the register.  	 */  	adapter->i2c_adap.owner = THIS_MODULE; @@ -4020,7 +4019,7 @@ static int igb_sw_init(struct igb_adapter *adapter)  }  /** - *  igb_open - Called when a network interface is made active + *  __igb_open - Called when a network interface is made active   *  @netdev: network interface device structure   *  @resuming: indicates whether we are in a resume call   * @@ -4138,7 +4137,7 @@ int igb_open(struct net_device *netdev)  }  /** - *  igb_close - Disables a network interface + *  __igb_close - Disables a network interface   *  @netdev: network interface device structure   *  @suspending: indicates we are in a suspend call   * @@ -5856,7 +5855,7 @@ static void igb_tx_ctxtdesc(struct igb_ring *tx_ring,  	 */  	if (tx_ring->launchtime_enable) {  		ts = ktime_to_timespec64(first->skb->tstamp); -		first->skb->tstamp = ktime_set(0, 0); +		skb_txtime_consumed(first->skb);  		context_desc->seqnum_seed = cpu_to_le32(ts.tv_nsec / 32);  	} else {  		context_desc->seqnum_seed = 0;  |