net/mlx5: remove redundant check of devargs
[dpdk.git] / drivers / net / mlx5 / linux / mlx5_os.c
index 72bbb66..191da1b 100644 (file)
@@ -112,7 +112,7 @@ static struct mlx5_indexed_pool_config icfg[] = {
  *   Pointer to RQ channel object, which includes the channel fd
  *
  * @param[out] fd
- *   The file descriptor (representing the intetrrupt) used in this channel.
+ *   The file descriptor (representing the interrupt) used in this channel.
  *
  * @return
  *   0 on successfully setting the fd to non-blocking, non-zero otherwise.
@@ -138,7 +138,7 @@ mlx5_os_set_nonblock_channel_fd(int fd)
  *   Pointer to mlx5 device attributes.
  *
  * @return
- *   0 on success, non zero error number otherwise
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
  */
 int
 mlx5_os_get_dev_attr(struct mlx5_common_device *cdev,
@@ -150,8 +150,10 @@ mlx5_os_get_dev_attr(struct mlx5_common_device *cdev,
 
        memset(device_attr, 0, sizeof(*device_attr));
        err = mlx5_glue->query_device_ex(ctx, NULL, &attr_ex);
-       if (err)
-               return err;
+       if (err) {
+               rte_errno = errno;
+               return -rte_errno;
+       }
        device_attr->device_cap_flags_ex = attr_ex.device_cap_flags_ex;
        device_attr->max_qp_wr = attr_ex.orig_attr.max_qp_wr;
        device_attr->max_sge = attr_ex.orig_attr.max_sge;
@@ -170,8 +172,10 @@ mlx5_os_get_dev_attr(struct mlx5_common_device *cdev,
 
        struct mlx5dv_context dv_attr = { .comp_mask = 0 };
        err = mlx5_glue->dv_query_device(ctx, &dv_attr);
-       if (err)
-               return err;
+       if (err) {
+               rte_errno = errno;
+               return -rte_errno;
+       }
 
        device_attr->flags = dv_attr.flags;
        device_attr->comp_mask = dv_attr.comp_mask;
@@ -195,7 +199,7 @@ mlx5_os_get_dev_attr(struct mlx5_common_device *cdev,
        strlcpy(device_attr->fw_ver, attr_ex.orig_attr.fw_ver,
                sizeof(device_attr->fw_ver));
 
-       return err;
+       return 0;
 }
 
 /**
@@ -337,6 +341,16 @@ mlx5_alloc_shared_dr(struct mlx5_priv *priv)
                                              flow_dv_dest_array_clone_free_cb);
        if (!sh->dest_array_list)
                goto error;
+       /* Init shared flex parsers list, no need lcore_share */
+       snprintf(s, sizeof(s), "%s_flex_parsers_list", sh->ibdev_name);
+       sh->flex_parsers_dv = mlx5_list_create(s, sh, false,
+                                              mlx5_flex_parser_create_cb,
+                                              mlx5_flex_parser_match_cb,
+                                              mlx5_flex_parser_remove_cb,
+                                              mlx5_flex_parser_clone_cb,
+                                              mlx5_flex_parser_clone_free_cb);
+       if (!sh->flex_parsers_dv)
+               goto error;
 #endif
 #ifdef HAVE_MLX5DV_DR
        void *domain;
@@ -410,6 +424,7 @@ mlx5_alloc_shared_dr(struct mlx5_priv *priv)
                        mlx5_glue->dr_create_flow_action_default_miss();
        if (!sh->default_miss_action)
                DRV_LOG(WARNING, "Default miss action is not supported.");
+       LIST_INIT(&sh->shared_rxqs);
        return 0;
 error:
        /* Rollback the created objects. */
@@ -484,6 +499,7 @@ mlx5_os_free_shared_dr(struct mlx5_priv *priv)
        MLX5_ASSERT(sh && sh->refcnt);
        if (sh->refcnt > 1)
                return;
+       MLX5_ASSERT(LIST_EMPTY(&sh->shared_rxqs));
 #ifdef HAVE_MLX5DV_DR
        if (sh->rx_domain) {
                mlx5_glue->dr_destroy_domain(sh->rx_domain);
@@ -704,10 +720,15 @@ mlx5_flow_drop_action_config(struct rte_eth_dev *dev __rte_unused)
         * DR supports drop action placeholder when it is supported;
         * otherwise, use the queue drop action.
         */
-       if (mlx5_flow_discover_dr_action_support(dev))
-               priv->root_drop_action = priv->drop_queue.hrxq->action;
-       else
+       if (!priv->sh->drop_action_check_flag) {
+               if (!mlx5_flow_discover_dr_action_support(dev))
+                       priv->sh->dr_drop_action_en = 1;
+               priv->sh->drop_action_check_flag = 1;
+       }
+       if (priv->sh->dr_drop_action_en)
                priv->root_drop_action = priv->sh->dr_drop_action;
+       else
+               priv->root_drop_action = priv->drop_queue.hrxq->action;
 #endif
 }
 
@@ -864,10 +885,6 @@ mlx5_dev_spawn(struct rte_device *dpdk_dev,
        unsigned int mpls_en = 0;
        unsigned int swp = 0;
        unsigned int mprq = 0;
-       unsigned int mprq_min_stride_size_n = 0;
-       unsigned int mprq_max_stride_size_n = 0;
-       unsigned int mprq_min_stride_num_n = 0;
-       unsigned int mprq_max_stride_num_n = 0;
        struct rte_ether_addr mac;
        char name[RTE_ETH_NAME_MAX_LEN];
        int own_domain_id = 0;
@@ -951,26 +968,45 @@ err_secondary:
                mlx5_dev_close(eth_dev);
                return NULL;
        }
-       /*
-        * Some parameters ("tx_db_nc" in particularly) are needed in
-        * advance to create dv/verbs device context. We proceed the
-        * devargs here to get ones, and later proceed devargs again
-        * to override some hardware settings.
-        */
+       /* Process parameters. */
        err = mlx5_args(config, dpdk_dev->devargs);
        if (err) {
-               err = rte_errno;
                DRV_LOG(ERR, "failed to process device arguments: %s",
                        strerror(rte_errno));
-               goto error;
+               return NULL;
        }
+       sh = mlx5_alloc_shared_dev_ctx(spawn, config);
+       if (!sh)
+               return NULL;
+       /* Update final values for devargs before check sibling config. */
        if (config->dv_miss_info) {
                if (switch_info->master || switch_info->representor)
                        config->dv_xmeta_en = MLX5_XMETA_MODE_META16;
        }
-       sh = mlx5_alloc_shared_dev_ctx(spawn, config);
-       if (!sh)
-               return NULL;
+#if !defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_MLX5DV_DR)
+       if (config->dv_flow_en) {
+               DRV_LOG(WARNING, "DV flow is not supported.");
+               config->dv_flow_en = 0;
+       }
+#endif
+#ifdef HAVE_MLX5DV_DR_ESWITCH
+       if (!(sh->cdev->config.hca_attr.eswitch_manager && config->dv_flow_en &&
+             (switch_info->representor || switch_info->master)))
+               config->dv_esw_en = 0;
+#else
+       config->dv_esw_en = 0;
+#endif
+       if (!config->dv_esw_en &&
+           config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
+               DRV_LOG(WARNING,
+                       "Metadata mode %u is not supported (no E-Switch).",
+                       config->dv_xmeta_en);
+               config->dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
+       }
+       /* Check sibling device configurations. */
+       err = mlx5_dev_check_sibling_config(sh, config, dpdk_dev);
+       if (err)
+               goto error;
 #ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR
        config->dest_tir = 1;
 #endif
@@ -1022,20 +1058,20 @@ err_secondary:
                        mprq_caps.max_single_wqe_log_num_of_strides);
                DRV_LOG(DEBUG, "\tsupported_qpts: %d",
                        mprq_caps.supported_qpts);
+               DRV_LOG(DEBUG, "\tmin_stride_wqe_log_size: %d",
+                       config->mprq.log_min_stride_wqe_size);
                DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
                mprq = 1;
-               mprq_min_stride_size_n =
+               config->mprq.log_min_stride_size =
                        mprq_caps.min_single_stride_log_num_of_bytes;
-               mprq_max_stride_size_n =
+               config->mprq.log_max_stride_size =
                        mprq_caps.max_single_stride_log_num_of_bytes;
-               mprq_min_stride_num_n =
+               config->mprq.log_min_stride_num =
                        mprq_caps.min_single_wqe_log_num_of_strides;
-               mprq_max_stride_num_n =
+               config->mprq.log_max_stride_num =
                        mprq_caps.max_single_wqe_log_num_of_strides;
        }
 #endif
-       /* Rx CQE compression is enabled by default. */
-       config->cqe_comp = 1;
 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
        if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
                config->tunnel_en = dv_attr.tunnel_offloads_caps &
@@ -1224,11 +1260,6 @@ err_secondary:
                DRV_LOG(DEBUG, "dev_port-%u new domain_id=%u\n",
                        priv->dev_port, priv->domain_id);
        }
-       /* Override some values set by hardware configuration. */
-       mlx5_args(config, dpdk_dev->devargs);
-       err = mlx5_dev_check_sibling_config(priv, config, dpdk_dev);
-       if (err)
-               goto error;
        config->hw_csum = !!(sh->device_attr.device_cap_flags_ex &
                            IBV_DEVICE_RAW_IP_CSUM);
        DRV_LOG(DEBUG, "checksum offloading is %ssupported",
@@ -1236,12 +1267,6 @@ err_secondary:
 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
        !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
        DRV_LOG(DEBUG, "counters are not supported");
-#endif
-#if !defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_MLX5DV_DR)
-       if (config->dv_flow_en) {
-               DRV_LOG(WARNING, "DV flow is not supported");
-               config->dv_flow_en = 0;
-       }
 #endif
        config->ind_table_max_size =
                sh->device_attr.max_rwq_indirection_table_size;
@@ -1491,6 +1516,15 @@ err_secondary:
                goto error;
 #endif
        }
+       if (config->std_delay_drop || config->hp_delay_drop) {
+               if (!config->hca_attr.rq_delay_drop) {
+                       config->std_delay_drop = 0;
+                       config->hp_delay_drop = 0;
+                       DRV_LOG(WARNING,
+                               "dev_port-%u: Rxq delay drop is not supported",
+                               priv->dev_port);
+               }
+       }
        if (sh->devx) {
                uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)];
 
@@ -1522,36 +1556,7 @@ err_secondary:
                config->hw_fcs_strip = 0;
        DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
                (config->hw_fcs_strip ? "" : "not "));
-       if (config->mprq.enabled && mprq) {
-               if (config->mprq.stride_num_n &&
-                   (config->mprq.stride_num_n > mprq_max_stride_num_n ||
-                    config->mprq.stride_num_n < mprq_min_stride_num_n)) {
-                       config->mprq.stride_num_n =
-                               RTE_MIN(RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
-                                               mprq_min_stride_num_n),
-                                       mprq_max_stride_num_n);
-                       DRV_LOG(WARNING,
-                               "the number of strides"
-                               " for Multi-Packet RQ is out of range,"
-                               " setting default value (%u)",
-                               1 << config->mprq.stride_num_n);
-               }
-               if (config->mprq.stride_size_n &&
-                   (config->mprq.stride_size_n > mprq_max_stride_size_n ||
-                    config->mprq.stride_size_n < mprq_min_stride_size_n)) {
-                       config->mprq.stride_size_n =
-                               RTE_MIN(RTE_MAX(MLX5_MPRQ_STRIDE_SIZE_N,
-                                               mprq_min_stride_size_n),
-                                       mprq_max_stride_size_n);
-                       DRV_LOG(WARNING,
-                               "the size of a stride"
-                               " for Multi-Packet RQ is out of range,"
-                               " setting default value (%u)",
-                               1 << config->mprq.stride_size_n);
-               }
-               config->mprq.min_stride_size_n = mprq_min_stride_size_n;
-               config->mprq.max_stride_size_n = mprq_max_stride_size_n;
-       } else if (config->mprq.enabled && !mprq) {
+       if (config->mprq.enabled && !mprq) {
                DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
                config->mprq.enabled = 0;
        }
@@ -1628,8 +1633,8 @@ err_secondary:
        DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
                priv->mtu);
        /* Initialize burst functions to prevent crashes before link-up. */
-       eth_dev->rx_pkt_burst = removed_rx_burst;
-       eth_dev->tx_pkt_burst = removed_tx_burst;
+       eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy;
+       eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy;
        eth_dev->dev_ops = &mlx5_dev_ops;
        eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
        eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
@@ -1657,13 +1662,6 @@ err_secondary:
         * Verbs context returned by ibv_open_device().
         */
        mlx5_link_update(eth_dev, 0);
-#ifdef HAVE_MLX5DV_DR_ESWITCH
-       if (!(config->hca_attr.eswitch_manager && config->dv_flow_en &&
-             (switch_info->representor || switch_info->master)))
-               config->dv_esw_en = 0;
-#else
-       config->dv_esw_en = 0;
-#endif
        /* Detect minimal data bytes to inline. */
        mlx5_set_min_inline(spawn, config);
        /* Store device configuration on private structure. */
@@ -1682,13 +1680,11 @@ err_secondary:
                err = mlx5_alloc_shared_dr(priv);
                if (err)
                        goto error;
+               if (mlx5_flex_item_port_init(eth_dev) < 0)
+                       goto error;
        }
        if (sh->devx && config->dv_flow_en && config->dest_tir) {
                priv->obj_ops = devx_obj_ops;
-               priv->obj_ops.drop_action_create =
-                                               ibv_obj_ops.drop_action_create;
-               priv->obj_ops.drop_action_destroy =
-                                               ibv_obj_ops.drop_action_destroy;
                mlx5_queue_counter_id_prepare(eth_dev);
                priv->obj_ops.lb_dummy_queue_create =
                                        mlx5_rxq_ibv_obj_dummy_lb_create;
@@ -1703,8 +1699,7 @@ err_secondary:
                priv->obj_ops = ibv_obj_ops;
        }
        if (config->tx_pp &&
-           (priv->config.dv_esw_en ||
-            priv->obj_ops.txq_obj_new != mlx5_txq_devx_obj_new)) {
+           priv->obj_ops.txq_obj_new != mlx5_txq_devx_obj_new) {
                /*
                 * HAVE_MLX5DV_DEVX_UAR_OFFSET is required to support
                 * packet pacing and already checked above.
@@ -1720,19 +1715,19 @@ err_secondary:
        priv->drop_queue.hrxq = mlx5_drop_action_create(eth_dev);
        if (!priv->drop_queue.hrxq)
                goto error;
-       /* Supported Verbs flow priority number detection. */
-       err = mlx5_flow_discover_priorities(eth_dev);
+       /* Port representor shares the same max priority with pf port. */
+       if (!priv->sh->flow_priority_check_flag) {
+               /* Supported Verbs flow priority number detection. */
+               err = mlx5_flow_discover_priorities(eth_dev);
+               priv->sh->flow_max_priority = err;
+               priv->sh->flow_priority_check_flag = 1;
+       } else {
+               err = priv->sh->flow_max_priority;
+       }
        if (err < 0) {
                err = -err;
                goto error;
        }
-       priv->config.flow_prio = err;
-       if (!priv->config.dv_esw_en &&
-           priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
-               DRV_LOG(WARNING, "metadata mode %u is not supported "
-                                "(no E-Switch)", priv->config.dv_xmeta_en);
-               priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
-       }
        mlx5_set_metadata_mask(eth_dev);
        if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
            !priv->sh->dv_regc0_mask) {
@@ -1752,10 +1747,12 @@ err_secondary:
                goto error;
        rte_rwlock_init(&priv->ind_tbls_lock);
        /* Query availability of metadata reg_c's. */
-       err = mlx5_flow_discover_mreg_c(eth_dev);
-       if (err < 0) {
-               err = -err;
-               goto error;
+       if (!priv->sh->metadata_regc_check_flag) {
+               err = mlx5_flow_discover_mreg_c(eth_dev);
+               if (err < 0) {
+                       err = -err;
+                       goto error;
+               }
        }
        if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
                DRV_LOG(DEBUG,
@@ -1810,6 +1807,8 @@ error:
                        claim_zero(rte_eth_switch_domain_free(priv->domain_id));
                if (priv->hrxqs)
                        mlx5_list_destroy(priv->hrxqs);
+               if (eth_dev && priv->flex_item_map)
+                       mlx5_flex_item_port_cleanup(eth_dev);
                mlx5_free(priv);
                if (eth_dev != NULL)
                        eth_dev->data->dev_private = NULL;
@@ -1898,6 +1897,8 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
        FILE *bond_file = NULL, *file;
        int pf = -1;
        int ret;
+       uint8_t cur_guid[32] = {0};
+       uint8_t guid[32] = {0};
 
        /*
         * Try to get master device name. If something goes wrong suppose
@@ -1911,6 +1912,8 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
        np = mlx5_nl_portnum(nl_rdma, ibdev_name);
        if (!np)
                return -1;
+       if (mlx5_get_device_guid(pci_dev, cur_guid, sizeof(cur_guid)) < 0)
+               return -1;
        /*
         * The master device might not be on the predefined port(not on port
         * index 1, it is not guaranteed), we have to scan all Infiniband
@@ -1938,6 +1941,7 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
                char tmp_str[IF_NAMESIZE + 32];
                struct rte_pci_addr pci_addr;
                struct mlx5_switch_info info;
+               int ret;
 
                /* Process slave interface names in the loop. */
                snprintf(tmp_str, sizeof(tmp_str),
@@ -1969,15 +1973,6 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
                                tmp_str);
                        break;
                }
-               /* Match PCI address, allows BDF0+pfx or BDFx+pfx. */
-               if (pci_dev->domain == pci_addr.domain &&
-                   pci_dev->bus == pci_addr.bus &&
-                   pci_dev->devid == pci_addr.devid &&
-                   ((pci_dev->function == 0 &&
-                     pci_dev->function + owner == pci_addr.function) ||
-                    (pci_dev->function == owner &&
-                     pci_addr.function == owner)))
-                       pf = info.port_name;
                /* Get ifindex. */
                snprintf(tmp_str, sizeof(tmp_str),
                         "/sys/class/net/%s/ifindex", ifname);
@@ -1994,6 +1989,30 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
                bond_info->ports[info.port_name].pci_addr = pci_addr;
                bond_info->ports[info.port_name].ifindex = ifindex;
                bond_info->n_port++;
+               /*
+                * Under socket direct mode, bonding will use
+                * system_image_guid as identification.
+                * After OFED 5.4, guid is readable (ret >= 0) under sysfs.
+                * All bonding members should have the same guid even if driver
+                * is using PCIe BDF.
+                */
+               ret = mlx5_get_device_guid(&pci_addr, guid, sizeof(guid));
+               if (ret < 0)
+                       break;
+               else if (ret > 0) {
+                       if (!memcmp(guid, cur_guid, sizeof(guid)) &&
+                           owner == info.port_name &&
+                           (owner != 0 || (owner == 0 &&
+                           !rte_pci_addr_cmp(pci_dev, &pci_addr))))
+                               pf = info.port_name;
+               } else if (pci_dev->domain == pci_addr.domain &&
+                   pci_dev->bus == pci_addr.bus &&
+                   pci_dev->devid == pci_addr.devid &&
+                   ((pci_dev->function == 0 &&
+                     pci_dev->function + owner == pci_addr.function) ||
+                    (pci_dev->function == owner &&
+                     pci_addr.function == owner)))
+                       pf = info.port_name;
        }
        if (pf >= 0) {
                /* Get bond interface info */
@@ -2006,14 +2025,21 @@ mlx5_device_bond_pci_match(const char *ibdev_name,
                        DRV_LOG(INFO, "PF device %u, bond device %u(%s)",
                                ifindex, bond_info->ifindex, bond_info->ifname);
        }
+       if (owner == 0 && pf != 0) {
+               DRV_LOG(INFO, "PCIe instance %04x:%02x:%02x.%x isn't bonding owner",
+                               pci_dev->domain, pci_dev->bus, pci_dev->devid,
+                               pci_dev->function);
+       }
        return pf;
 }
 
 static void
-mlx5_os_config_default(struct mlx5_dev_config *config)
+mlx5_os_config_default(struct mlx5_dev_config *config,
+                      struct mlx5_common_dev_config *cconf)
 {
        memset(config, 0, sizeof(*config));
        config->mps = MLX5_ARG_UNSET;
+       config->cqe_comp = 1;
        config->rx_vec_en = 1;
        config->txq_inline_max = MLX5_ARG_UNSET;
        config->txq_inline_min = MLX5_ARG_UNSET;
@@ -2022,11 +2048,17 @@ mlx5_os_config_default(struct mlx5_dev_config *config)
        config->vf_nl_en = 1;
        config->mprq.max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN;
        config->mprq.min_rxqs_num = MLX5_MPRQ_MIN_RXQS;
+       config->mprq.log_min_stride_wqe_size = cconf->devx ?
+                                       cconf->hca_attr.log_min_stride_wqe_sz :
+                                       MLX5_MPRQ_LOG_MIN_STRIDE_WQE_SIZE;
+       config->mprq.log_stride_num = MLX5_MPRQ_DEFAULT_LOG_STRIDE_NUM;
        config->dv_esw_en = 1;
        config->dv_flow_en = 1;
        config->decap_en = 1;
        config->log_hp_size = MLX5_ARG_UNSET;
        config->allow_duplicate_pattern = 1;
+       config->std_delay_drop = 0;
+       config->hp_delay_drop = 0;
 }
 
 /**
@@ -2240,7 +2272,7 @@ mlx5_os_pci_probe_pf(struct mlx5_common_device *cdev,
                                                /*
                                                 * Force standalone bonding
                                                 * device for ROCE LAG
-                                                * confgiurations.
+                                                * configurations.
                                                 */
                                                list[ns].info.master = 0;
                                                list[ns].info.representor = 0;
@@ -2436,7 +2468,7 @@ mlx5_os_pci_probe_pf(struct mlx5_common_device *cdev,
                uint32_t restore;
 
                /* Default configuration. */
-               mlx5_os_config_default(&dev_config);
+               mlx5_os_config_default(&dev_config, &cdev->config);
                dev_config.vf = dev_config_vf;
                list[i].eth_dev = mlx5_dev_spawn(cdev->dev, &list[i],
                                                 &dev_config, &eth_da);
@@ -2577,7 +2609,7 @@ mlx5_os_pci_probe(struct mlx5_common_device *cdev)
                }
                if (ret) {
                        DRV_LOG(ERR, "Probe of PCI device " PCI_PRI_FMT " "
-                               "aborted due to proding failure of PF %u",
+                               "aborted due to prodding failure of PF %u",
                                pci_dev->addr.domain, pci_dev->addr.bus,
                                pci_dev->addr.devid, pci_dev->addr.function,
                                eth_da.ports[p]);
@@ -2606,7 +2638,7 @@ mlx5_os_auxiliary_probe(struct mlx5_common_device *cdev)
        if (ret != 0)
                return ret;
        /* Set default config data. */
-       mlx5_os_config_default(&config);
+       mlx5_os_config_default(&config, &cdev->config);
        config.sf = 1;
        /* Init spawn data. */
        spawn.max_port = 1;