> -----Original Message-----
> From: Richardson, Bruce 
> Sent: Friday, October 4, 2019 10:19 AM
> To: [email protected]; Chautru, Nicolas <[email protected]>
> Cc: Akhil Goyal <[email protected]>; Andrzej Ostruszka <[email protected]>; 
> Richardson, Bruce <[email protected]>
> Subject: [PATCH 5/5] app/test-bbdev: enable fpga_lte_fec support in shared 
> builds
> 
> Now that the necessary function is exported from the fpga_lte_fec driver, we 
> can enable the code paths using it in shared-library builds.
> 
> Signed-off-by: Bruce Richardson <[email protected]>
> ---
>  app/test-bbdev/Makefile          | 3 +++
>  app/test-bbdev/test_bbdev_perf.c | 2 --
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/app/test-bbdev/Makefile b/app/test-bbdev/Makefile index 
> 6da0c8e0c..c53982ffc 100644
> --- a/app/test-bbdev/Makefile
> +++ b/app/test-bbdev/Makefile
> @@ -21,5 +21,8 @@ SRCS-$(CONFIG_RTE_TEST_BBDEV) += test_bbdev_perf.c
>  SRCS-$(CONFIG_RTE_TEST_BBDEV) += test_bbdev_vector.c
>  
>  LDLIBS += -lm
> +ifeq ($(CONFIG_RTE_LIBRTE_PMD_BBDEV_FPGA_LTE_FEC),y)
> +LDLIBS += -lrte_pmd_bbdev_fpga_lte_fec
> +endif
>  
>  include $(RTE_SDK)/mk/rte.app.mk
> diff --git a/app/test-bbdev/test_bbdev_perf.c 
> b/app/test-bbdev/test_bbdev_perf.c
> index fb9045fc5..d8db58ea0 100644
> --- a/app/test-bbdev/test_bbdev_perf.c
> +++ b/app/test-bbdev/test_bbdev_perf.c
> @@ -519,7 +519,6 @@ add_bbdev_dev(uint8_t dev_id, struct rte_bbdev_info *info,
>  /* Configure fpga lte fec with PF & VF values
>   * if '-i' flag is set and using fpga device
>   */
> -#ifndef RTE_BUILD_SHARED_LIB
>  #ifdef RTE_LIBRTE_PMD_BBDEV_FPGA_LTE_FEC
>       if ((get_init_device() == true) &&
>               (!strcmp(info->drv.driver_name, FPGA_PF_DRIVER_NAME))) { @@ 
> -563,7 +562,6 @@ add_bbdev_dev(uint8_t dev_id, struct rte_bbdev_info *info,
>                               "Failed to configure 4G FPGA PF for bbdev %s",
>                               info->dev_name);
>       }
> -#endif
>  #endif
>       nb_queues = RTE_MIN(rte_lcore_count(), info->drv.max_num_queues);
>       nb_queues = RTE_MIN(nb_queues, (unsigned int) MAX_QUEUES);
> --
> 2.21.0
> 

Thanks Bruce, I did review the serie and it is better and cleaner this way. 
This is a non backward compatible change due to the rename of driver library 
but worth the update notably given more similar drivers being upstreamed next 
quarter.

Acked-by: Nic Chautru <[email protected]>

Reply via email to