]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ice: Move devlink port to PF/VF struct
authorWojciech Drewek <wojciech.drewek@intel.com>
Fri, 20 Aug 2021 00:08:49 +0000 (17:08 -0700)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Thu, 7 Oct 2021 17:41:41 +0000 (10:41 -0700)
Keeping devlink port inside VSI data structure causes some issues.
Since VF VSI is released during reset that means that we have to
unregister devlink port and register it again every time reset is
triggered. With the new changes in devlink API it
might cause deadlock issues. After calling
devlink_port_register/devlink_port_unregister devlink API is going to
lock rtnl_mutex. It's an issue when VF reset is triggered in netlink
operation context (like setting VF MAC address or VLAN),
because rtnl_lock is already taken by netlink. Another call of
rtnl_lock from devlink API results in dead-lock.

By moving devlink port to PF/VF we avoid creating/destroying it
during reset. Since this patch, devlink ports are created during
ice_probe, destroyed during ice_remove for PF and created during
ice_repr_add, destroyed during ice_repr_rem for VF.

Signed-off-by: Wojciech Drewek <wojciech.drewek@intel.com>
Tested-by: Sandeep Penigalapati <sandeep.penigalapati@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/ice.h
drivers/net/ethernet/intel/ice/ice_devlink.c
drivers/net/ethernet/intel/ice/ice_devlink.h
drivers/net/ethernet/intel/ice/ice_lib.c
drivers/net/ethernet/intel/ice/ice_main.c
drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
drivers/net/ethernet/intel/ice/ice_virtchnl_pf.h

index 1657f0cf10b133ce0cce3c3d06624727171f271d..9d07bb995f41f950256b99a372235ad2a1473cbe 100644 (file)
@@ -311,10 +311,6 @@ struct ice_vsi {
        spinlock_t arfs_lock;   /* protects aRFS hash table and filter state */
        atomic_t *arfs_last_fltr_id;
 
-       /* devlink port data */
-       struct devlink_port devlink_port;
-       bool devlink_port_registered;
-
        u16 max_frame;
        u16 rx_buf_len;
 
@@ -426,6 +422,9 @@ struct ice_pf {
        struct devlink_region *nvm_region;
        struct devlink_region *devcaps_region;
 
+       /* devlink port data */
+       struct devlink_port devlink_port;
+
        /* OS reserved IRQ details */
        struct msix_entry *msix_entries;
        struct ice_res_tracker *irq_tracker;
index 69c9c165f987efcca8bfe6de73bdc4a930fdc140..55353bf4cbef5d6d62e3050bce9f47bac2402390 100644 (file)
@@ -487,60 +487,115 @@ void ice_devlink_unregister(struct ice_pf *pf)
 }
 
 /**
- * ice_devlink_create_port - Create a devlink port for this VSI
- * @vsi: the VSI to create a port for
+ * ice_devlink_create_pf_port - Create a devlink port for this PF
+ * @pf: the PF to create a devlink port for
  *
- * Create and register a devlink_port for this VSI.
+ * Create and register a devlink_port for this PF.
  *
  * Return: zero on success or an error code on failure.
  */
-int ice_devlink_create_port(struct ice_vsi *vsi)
+int ice_devlink_create_pf_port(struct ice_pf *pf)
 {
        struct devlink_port_attrs attrs = {};
-       struct ice_port_info *pi;
+       struct devlink_port *devlink_port;
        struct devlink *devlink;
+       struct ice_vsi *vsi;
        struct device *dev;
-       struct ice_pf *pf;
        int err;
 
-       /* Currently we only create devlink_port instances for PF VSIs */
-       if (vsi->type != ICE_VSI_PF)
-               return -EINVAL;
-
-       pf = vsi->back;
-       devlink = priv_to_devlink(pf);
        dev = ice_pf_to_dev(pf);
-       pi = pf->hw.port_info;
+
+       devlink_port = &pf->devlink_port;
+
+       vsi = ice_get_main_vsi(pf);
+       if (!vsi)
+               return -EIO;
 
        attrs.flavour = DEVLINK_PORT_FLAVOUR_PHYSICAL;
-       attrs.phys.port_number = pi->lport;
-       devlink_port_attrs_set(&vsi->devlink_port, &attrs);
-       err = devlink_port_register(devlink, &vsi->devlink_port, vsi->idx);
+       attrs.phys.port_number = pf->hw.bus.func;
+       devlink_port_attrs_set(devlink_port, &attrs);
+       devlink = priv_to_devlink(pf);
+
+       err = devlink_port_register(devlink, devlink_port, vsi->idx);
        if (err) {
-               dev_err(dev, "devlink_port_register failed: %d\n", err);
+               dev_err(dev, "Failed to create devlink port for PF %d, error %d\n",
+                       pf->hw.pf_id, err);
                return err;
        }
 
-       vsi->devlink_port_registered = true;
+       return 0;
+}
+
+/**
+ * ice_devlink_destroy_pf_port - Destroy the devlink_port for this PF
+ * @pf: the PF to cleanup
+ *
+ * Unregisters the devlink_port structure associated with this PF.
+ */
+void ice_devlink_destroy_pf_port(struct ice_pf *pf)
+{
+       struct devlink_port *devlink_port;
+
+       devlink_port = &pf->devlink_port;
+
+       devlink_port_type_clear(devlink_port);
+       devlink_port_unregister(devlink_port);
+}
+
+/**
+ * ice_devlink_create_vf_port - Create a devlink port for this VF
+ * @vf: the VF to create a port for
+ *
+ * Create and register a devlink_port for this VF.
+ *
+ * Return: zero on success or an error code on failure.
+ */
+int ice_devlink_create_vf_port(struct ice_vf *vf)
+{
+       struct devlink_port_attrs attrs = {};
+       struct devlink_port *devlink_port;
+       struct devlink *devlink;
+       struct ice_vsi *vsi;
+       struct device *dev;
+       struct ice_pf *pf;
+       int err;
+
+       pf = vf->pf;
+       dev = ice_pf_to_dev(pf);
+       vsi = ice_get_vf_vsi(vf);
+       devlink_port = &vf->devlink_port;
+
+       attrs.flavour = DEVLINK_PORT_FLAVOUR_PCI_VF;
+       attrs.pci_vf.pf = pf->hw.bus.func;
+       attrs.pci_vf.vf = vf->vf_id;
+
+       devlink_port_attrs_set(devlink_port, &attrs);
+       devlink = priv_to_devlink(pf);
+
+       err = devlink_port_register(devlink, devlink_port, vsi->idx);
+       if (err) {
+               dev_err(dev, "Failed to create devlink port for VF %d, error %d\n",
+                       vf->vf_id, err);
+               return err;
+       }
 
        return 0;
 }
 
 /**
- * ice_devlink_destroy_port - Destroy the devlink_port for this VSI
- * @vsi: the VSI to cleanup
+ * ice_devlink_destroy_vf_port - Destroy the devlink_port for this VF
+ * @vf: the VF to cleanup
  *
- * Unregisters the devlink_port structure associated with this VSI.
+ * Unregisters the devlink_port structure associated with this VF.
  */
-void ice_devlink_destroy_port(struct ice_vsi *vsi)
+void ice_devlink_destroy_vf_port(struct ice_vf *vf)
 {
-       if (!vsi->devlink_port_registered)
-               return;
+       struct devlink_port *devlink_port;
 
-       devlink_port_type_clear(&vsi->devlink_port);
-       devlink_port_unregister(&vsi->devlink_port);
+       devlink_port = &vf->devlink_port;
 
-       vsi->devlink_port_registered = false;
+       devlink_port_type_clear(devlink_port);
+       devlink_port_unregister(devlink_port);
 }
 
 /**
index e721d7b0d627c0c9aff5bdac3d16bd585638a499..b7f9551e4fc441a838fe8b6cd461cb7cda494062 100644 (file)
@@ -8,8 +8,10 @@ struct ice_pf *ice_allocate_pf(struct device *dev);
 
 void ice_devlink_register(struct ice_pf *pf);
 void ice_devlink_unregister(struct ice_pf *pf);
-int ice_devlink_create_port(struct ice_vsi *vsi);
-void ice_devlink_destroy_port(struct ice_vsi *vsi);
+int ice_devlink_create_pf_port(struct ice_pf *pf);
+void ice_devlink_destroy_pf_port(struct ice_pf *pf);
+int ice_devlink_create_vf_port(struct ice_vf *vf);
+void ice_devlink_destroy_vf_port(struct ice_vf *vf);
 
 void ice_devlink_init_regions(struct ice_pf *pf);
 void ice_devlink_destroy_regions(struct ice_pf *pf);
index 3adbd9a179a7b436776ce0f9f31ba89f87ee479f..deff158dbae1952634b2a5c5b95ef096d173844b 100644 (file)
@@ -2859,7 +2859,8 @@ int ice_vsi_release(struct ice_vsi *vsi)
                clear_bit(ICE_VSI_NETDEV_REGISTERED, vsi->state);
        }
 
-       ice_devlink_destroy_port(vsi);
+       if (vsi->type == ICE_VSI_PF)
+               ice_devlink_destroy_pf_port(pf);
 
        if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
                ice_rss_clean(vsi);
index cabe84bb29fe4995c02a196c74b8f40c29d70df4..1cceaa9f1884914b66ffdba8d405d2949923ae20 100644 (file)
@@ -4174,11 +4174,11 @@ static int ice_register_netdev(struct ice_pf *pf)
        set_bit(ICE_VSI_NETDEV_REGISTERED, vsi->state);
        netif_carrier_off(vsi->netdev);
        netif_tx_stop_all_queues(vsi->netdev);
-       err = ice_devlink_create_port(vsi);
+       err = ice_devlink_create_pf_port(pf);
        if (err)
                goto err_devlink_create;
 
-       devlink_port_type_eth_set(&vsi->devlink_port, vsi->netdev);
+       devlink_port_type_eth_set(&pf->devlink_port, vsi->netdev);
 
        return 0;
 err_devlink_create:
index e93430ab37f1e95473b4c26cc088d07270ac6344..a827c6b653a38b3459979edfeade64eb6967e4bf 100644 (file)
@@ -251,7 +251,7 @@ ice_vc_hash_field_match_type ice_vc_hash_field_list_comms[] = {
  * ice_get_vf_vsi - get VF's VSI based on the stored index
  * @vf: VF used to get VSI
  */
-static struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf)
+struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf)
 {
        return vf->pf->vsi[vf->lan_vsi_idx];
 }
index 842cb077df8612df5274ec11820eed57712d4347..38b4dc82c5c18562ee35ec7c3c1e70f61e2361a3 100644 (file)
@@ -111,9 +111,13 @@ struct ice_vf {
        struct ice_mdd_vf_events mdd_rx_events;
        struct ice_mdd_vf_events mdd_tx_events;
        DECLARE_BITMAP(opcodes_allowlist, VIRTCHNL_OP_MAX);
+
+       /* devlink port data */
+       struct devlink_port devlink_port;
 };
 
 #ifdef CONFIG_PCI_IOV
+struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf);
 void ice_process_vflr_event(struct ice_pf *pf);
 int ice_sriov_configure(struct pci_dev *pdev, int num_vfs);
 int ice_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac);
@@ -171,6 +175,11 @@ static inline void ice_print_vfs_mdd_events(struct ice_pf *pf) { }
 static inline void ice_print_vf_rx_mdd_event(struct ice_vf *vf) { }
 static inline void ice_restore_all_vfs_msi_state(struct pci_dev *pdev) { }
 
+static inline struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf)
+{
+       return NULL;
+}
+
 static inline bool
 ice_is_malicious_vf(struct ice_pf __always_unused *pf,
                    struct ice_rq_event_info __always_unused *event,