diff options
author | Mark Rustad <mark.d.rustad@intel.com> | 2014-03-03 22:02:18 -0500 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2014-03-19 20:17:24 -0400 |
commit | 5b346dc97567270a5c0f02a390a1d1bb65237cea (patch) | |
tree | 10635e0e8d9bea0cc424213033ba3fdcfdf1ab72 /drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | |
parent | 2e7cfbdde8412a95ea4b003a68c2737434f543bb (diff) |
ixgbevf: Protect ixgbevf_down with __IXGBEVF_DOWN bit
The ixgbevf_down function can now prevent multiple executions by
doing test_and_set_bit on __IXGBEVF_DOWN. This did not work before
introduction of the __IXGBEVF_REMOVING bit, because of overloading
of __IXGBEVF_DOWN. Also add smp_mb__before_clear_bit call before
clearing the __IXGBEVF_DOWN bit.
Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c')
-rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c index 940d9244df62..a2cba53c31be 100644 --- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | |||
@@ -1620,6 +1620,7 @@ static void ixgbevf_up_complete(struct ixgbevf_adapter *adapter) | |||
1620 | 1620 | ||
1621 | spin_unlock_bh(&adapter->mbx_lock); | 1621 | spin_unlock_bh(&adapter->mbx_lock); |
1622 | 1622 | ||
1623 | smp_mb__before_clear_bit(); | ||
1623 | clear_bit(__IXGBEVF_DOWN, &adapter->state); | 1624 | clear_bit(__IXGBEVF_DOWN, &adapter->state); |
1624 | ixgbevf_napi_enable_all(adapter); | 1625 | ixgbevf_napi_enable_all(adapter); |
1625 | 1626 | ||
@@ -1744,7 +1745,8 @@ void ixgbevf_down(struct ixgbevf_adapter *adapter) | |||
1744 | int i; | 1745 | int i; |
1745 | 1746 | ||
1746 | /* signal that we are down to the interrupt handler */ | 1747 | /* signal that we are down to the interrupt handler */ |
1747 | set_bit(__IXGBEVF_DOWN, &adapter->state); | 1748 | if (test_and_set_bit(__IXGBEVF_DOWN, &adapter->state)) |
1749 | return; /* do nothing if already down */ | ||
1748 | 1750 | ||
1749 | /* disable all enabled rx queues */ | 1751 | /* disable all enabled rx queues */ |
1750 | for (i = 0; i < adapter->num_rx_queues; i++) | 1752 | for (i = 0; i < adapter->num_rx_queues; i++) |