diff options
author | Shannon Nelson <shannon.nelson@intel.com> | 2014-03-14 03:32:27 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2014-04-22 06:36:57 -0400 |
commit | 8276f75748a60a80ab465ad806c8685e624dfb65 (patch) | |
tree | 7b8ec761263b97509e9f24b769a1f9583257dba3 /drivers/net/ethernet/intel | |
parent | 90ef8d47cbb19df60f594e264498380251dae950 (diff) |
i40e: use generic vsi_open to unquiesce vsi
Use the new i40e_vsi_open() for waking VSIs back up in order to
be sure all the standard actions happen.
Change-ID: Ic3479410dd3079733f4951dcea69f101e69e77df
Signed-off-by: Shannon Nelson <shannon.nelson@intel.com>
Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com>
Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel')
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index 2210ab247711..7bbecf8c9fa7 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c | |||
@@ -3560,7 +3560,7 @@ static void i40e_unquiesce_vsi(struct i40e_vsi *vsi) | |||
3560 | if (vsi->netdev && netif_running(vsi->netdev)) | 3560 | if (vsi->netdev && netif_running(vsi->netdev)) |
3561 | vsi->netdev->netdev_ops->ndo_open(vsi->netdev); | 3561 | vsi->netdev->netdev_ops->ndo_open(vsi->netdev); |
3562 | else | 3562 | else |
3563 | i40e_up(vsi); /* this clears the DOWN bit */ | 3563 | i40e_vsi_open(vsi); /* this clears the DOWN bit */ |
3564 | } | 3564 | } |
3565 | 3565 | ||
3566 | /** | 3566 | /** |