From: David Marchand Date: Wed, 7 Apr 2021 09:06:56 +0000 (+0200) Subject: service: clean references to removed symbol X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=60e0e75b615fc94b8538a5334dffc0935864438c;p=dpdk.git service: clean references to removed symbol rte_service_get_id() was removed in v17.11 but the API description still referenced it and a version node was still present in EAL map. Fixes: 8edc9aaaf217 ("service: use id in get by name function") Cc: stable@dpdk.org Signed-off-by: David Marchand Reviewed-by: Harry van Haaren Acked-by: Thomas Monjalon --- diff --git a/lib/librte_eal/include/rte_service.h b/lib/librte_eal/include/rte_service.h index ca9950d091..c7d037d862 100644 --- a/lib/librte_eal/include/rte_service.h +++ b/lib/librte_eal/include/rte_service.h @@ -47,10 +47,7 @@ extern "C" { #define RTE_SERVICE_CAP_MT_SAFE (1 << 0) /** - * Return the number of services registered. - * - * The number of services registered can be passed to *rte_service_get_by_id*, - * enabling the application to retrieve the specification of each service. + * Return the number of services registered. * * @return The number of services registered. */ diff --git a/lib/librte_eal/version.map b/lib/librte_eal/version.map index fc305c1c71..7a307e3cc9 100644 --- a/lib/librte_eal/version.map +++ b/lib/librte_eal/version.map @@ -159,7 +159,6 @@ DPDK_21 { rte_service_component_unregister; rte_service_dump; rte_service_finalize; - rte_service_get_by_id; rte_service_get_by_name; rte_service_get_count; rte_service_get_name;