From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 166AFA0546 for ; Wed, 7 Apr 2021 11:08:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0B00A407FF; Wed, 7 Apr 2021 11:08:12 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 1A8D5407FF for ; Wed, 7 Apr 2021 11:08:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1617786490; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=6ghcDVFQOqUFhiWpVvftNvWgaEPsGUewuK5qExZj7so=; b=EdliJ01tRtg2Gl325sD/On6CYvd20QdQdvWaO/pIwsSGNT73sclsi1IHplvuULWWmJBPLe g9KfO1bXEbIFtNsd+ZR9u1mddIAtw0Y5X8GcmOccIhY2iquFV2l+4WUecAxodSocFO54/b b9wqE0ujojJHNilhgpUE1tRO2RsMa9E= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-80-MQgnUzhaNLq25VOyK2XK_Q-1; Wed, 07 Apr 2021 05:08:09 -0400 X-MC-Unique: MQgnUzhaNLq25VOyK2XK_Q-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BF3D26D4EC; Wed, 7 Apr 2021 09:08:07 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.239]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3564410016DB; Wed, 7 Apr 2021 09:08:04 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Harry van Haaren , Ray Kinsella , Neil Horman , Pavan Nikhilesh Date: Wed, 7 Apr 2021 11:06:56 +0200 Message-Id: <20210407090656.29176-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-stable] [PATCH] service: clean references to removed symbol X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 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 --- lib/librte_eal/include/rte_service.h | 5 +---- lib/librte_eal/version.map | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) 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 e23745ae6e..0f2a9228b3 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; -- 2.23.0