diff options
author | Matthew Vick <[email protected]> | 2014-10-02 05:10:18 +0000 |
---|---|---|
committer | Jeff Kirsher <[email protected]> | 2014-10-16 01:37:33 -0700 |
commit | 4d4191566fdd0e8990b2e8ab5ae819227c92892f (patch) | |
tree | b6dcc0a196716712fa6ba1bf13387099673626f2 | |
parent | 91269e390d062b526432f2ef1352b8df82e0e0bc (diff) |
fm10k: Check the host state when bringing the interface up
Set the flag to fetch the host state before kicking off the service task
that reads the host state when bringing the interface back up.
Signed-off-by: Matthew Vick <[email protected]>
Tested-by: Aaron Brown <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
-rw-r--r-- | drivers/net/ethernet/intel/fm10k/fm10k_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/fm10k/fm10k_pci.c b/drivers/net/ethernet/intel/fm10k/fm10k_pci.c index e02036c427b9..a0cb74ab3dc6 100644 --- a/drivers/net/ethernet/intel/fm10k/fm10k_pci.c +++ b/drivers/net/ethernet/intel/fm10k/fm10k_pci.c @@ -1489,6 +1489,7 @@ void fm10k_up(struct fm10k_intfc *interface) netif_tx_start_all_queues(interface->netdev); /* kick off the service timer */ + hw->mac.get_host_state = 1; mod_timer(&interface->service_timer, jiffies); } |