diff options
| author | David S. Miller <[email protected]> | 2013-01-19 10:52:45 -0500 | 
|---|---|---|
| committer | David S. Miller <[email protected]> | 2013-01-19 10:52:45 -0500 | 
| commit | 8f60984565cd699d9ce8f650c0630b6542bf7a30 (patch) | |
| tree | 4d5451d81510f8510f059e944b24c450e7d2dda2 /drivers/net/ethernet/intel/igb/igb_main.c | |
| parent | 41d06b13dbe1af3e1aa5bae1988bfc92ff71be6b (diff) | |
| parent | 4b9ea4626b52c113c367c4776c9bb11b7231393d (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next
Jeff Kirsher says:
====================
This series contains updates to ixgbe, ixgbevf and igb.
====================
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/igb/igb_main.c')
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb_main.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index c9e438ba1ec2..b81a95370914 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c @@ -1,7 +1,7 @@  /*******************************************************************************    Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2012 Intel Corporation. +  Copyright(c) 2007-2013 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, @@ -69,7 +69,8 @@ char igb_driver_name[] = "igb";  char igb_driver_version[] = DRV_VERSION;  static const char igb_driver_string[] =  				"Intel(R) Gigabit Ethernet Network Driver"; -static const char igb_copyright[] = "Copyright (c) 2007-2012 Intel Corporation."; +static const char igb_copyright[] = +				"Copyright (c) 2007-2013 Intel Corporation.";  static const struct e1000_info *igb_info_tbl[] = {  	[board_82575] = &e1000_82575_info, @@ -5930,7 +5931,7 @@ static bool igb_clean_tx_irq(struct igb_q_vector *q_vector)  			break;  		/* prevent any other reads prior to eop_desc */ -		rmb(); +		read_barrier_depends();  		/* if DD is not set pending work has not been completed */  		if (!(eop_desc->wb.status & cpu_to_le32(E1000_TXD_STAT_DD))) |