OSDN Git Service

ice: Sanitize ice_ena_vsi and ice_dis_vsi
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Thu, 25 Jul 2019 09:53:55 +0000 (02:53 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 27 Aug 2019 06:02:48 +0000 (23:02 -0700)
1. ndo_open and ndo_stop are implemented by ice_open and ice_stop
   respectively. When enabling/disabling VSIs, just call
   ice_open/ice_stop instead of ndo_open/ndo_stop.

2. Rework logic around rtnl_lock/rtnl_unlock

3. In ice_ena_vsi, remove an unnecessary stack variable and return
   0 instead of err when __ICE_NEEDS_RESTART is not set.

Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ice/ice_main.c

index 76a647c..2f6125b 100644 (file)
@@ -436,13 +436,13 @@ static void ice_dis_vsi(struct ice_vsi *vsi, bool locked)
 
        if (vsi->type == ICE_VSI_PF && vsi->netdev) {
                if (netif_running(vsi->netdev)) {
-                       if (!locked) {
+                       if (!locked)
                                rtnl_lock();
-                               vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
+
+                       ice_stop(vsi->netdev);
+
+                       if (!locked)
                                rtnl_unlock();
-                       } else {
-                               vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
-                       }
                } else {
                        ice_vsi_close(vsi);
                }
@@ -3654,21 +3654,19 @@ static int ice_ena_vsi(struct ice_vsi *vsi, bool locked)
        int err = 0;
 
        if (!test_bit(__ICE_NEEDS_RESTART, vsi->state))
-               return err;
+               return 0;
 
        clear_bit(__ICE_NEEDS_RESTART, vsi->state);
 
        if (vsi->netdev && vsi->type == ICE_VSI_PF) {
-               struct net_device *netd = vsi->netdev;
-
                if (netif_running(vsi->netdev)) {
-                       if (locked) {
-                               err = netd->netdev_ops->ndo_open(netd);
-                       } else {
+                       if (!locked)
                                rtnl_lock();
-                               err = netd->netdev_ops->ndo_open(netd);
+
+                       err = ice_open(vsi->netdev);
+
+                       if (!locked)
                                rtnl_unlock();
-                       }
                }
        }