From: Rafal Kozik Date: Fri, 14 Dec 2018 13:18:28 +0000 (+0100) Subject: net/ena: pass number of CPUs to the host info structure X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b9302eb93a44f10c23675c50941aa8095ef66827;p=dpdk.git net/ena: pass number of CPUs to the host info structure The new ena_com allows the number of CPUs to be passed to the device in the host info structure. Signed-off-by: Rafal Kozik Acked-by: Michal Krawczyk --- diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c index 667820806a..5e9666f74e 100644 --- a/drivers/net/ena/ena_ethdev.c +++ b/drivers/net/ena/ena_ethdev.c @@ -437,6 +437,7 @@ static void ena_config_host_info(struct ena_com_dev *ena_dev) (DRV_MODULE_VER_MINOR << ENA_ADMIN_HOST_INFO_MINOR_SHIFT) | (DRV_MODULE_VER_SUBMINOR << ENA_ADMIN_HOST_INFO_SUB_MINOR_SHIFT); + host_info->num_cpus = rte_lcore_count(); rc = ena_com_set_host_attributes(ena_dev); if (rc) {