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 E09CBA0C47; Tue, 5 Oct 2021 11:17:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A5A66412C6; Tue, 5 Oct 2021 11:17:18 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id BD6B1412B3 for ; Tue, 5 Oct 2021 11:17:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1633425437; 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=K82NltwZSVmRaGLg/YFyLqnphv+p2z0YCQDFX/t1dLI=; b=FH+Cvyo/P5+3SEsFC+QZlkXidPrWIuwR+HhHSut++t5AEw3d2fXRlAfL8X2kinQ+as4Chs 5MJl7KTWgL8DKdojUS7F7lMDMe5VjS8HUmtB31M0132UVep458O286URrhbwHfNF1si+Hb BIxHS/nMpSdwbUxf+70UTRQaHwf6WNg= 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-65-CKG1ldHZNca5gA9VYdRE5Q-1; Tue, 05 Oct 2021 05:17:14 -0400 X-MC-Unique: CKG1ldHZNca5gA9VYdRE5Q-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id A9F70100D681; Tue, 5 Oct 2021 09:17:12 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.154]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7348160BF4; Tue, 5 Oct 2021 09:17:09 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@intel.com, Ray Kinsella , Jasvinder Singh , Cristian Dumitrescu , Vladimir Medvedkin , Conor Walsh , Stephen Hemminger Date: Tue, 5 Oct 2021 11:16:26 +0200 Message-Id: <20211005091626.31885-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 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-dev] [PATCH] sort symbols map X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixed with ./devtools/update-abi.sh $(cat ABI_VERSION) Fixes: e73a7ab22422 ("net/softnic: promote manage API") Fixes: 8f532a34c4f2 ("fib: promote API to stable") Fixes: 4aeb92396b85 ("rib: promote API to stable") Signed-off-by: David Marchand --- I added "./devtools/update-abi.sh $(cat ABI_VERSION)" to my checks. I should have caught it when merging fib and rib patches... But my eyes (or more likely brain) stopped at net/softnic bits. What do you think? Should I wait a bit more and send a global patch to catch any missed sorting just before rc1? In the meantime, if you merge .map updates, try to remember to run the command above. Thanks. --- drivers/net/softnic/version.map | 2 +- lib/fib/version.map | 21 ++++++++++----------- lib/rib/version.map | 33 ++++++++++++++++----------------- 3 files changed, 27 insertions(+), 29 deletions(-) diff --git a/drivers/net/softnic/version.map b/drivers/net/softnic/version.map index cd5afcf155..01e1514276 100644 --- a/drivers/net/softnic/version.map +++ b/drivers/net/softnic/version.map @@ -1,8 +1,8 @@ DPDK_22 { global: - rte_pmd_softnic_run; rte_pmd_softnic_manage; + rte_pmd_softnic_run; local: *; }; diff --git a/lib/fib/version.map b/lib/fib/version.map index af76add2b9..b23fa42b9b 100644 --- a/lib/fib/version.map +++ b/lib/fib/version.map @@ -1,25 +1,24 @@ DPDK_22 { global: - rte_fib_add; - rte_fib_create; - rte_fib_delete; - rte_fib_find_existing; - rte_fib_free; - rte_fib_lookup_bulk; - rte_fib_get_dp; - rte_fib_get_rib; - rte_fib_select_lookup; - rte_fib6_add; rte_fib6_create; rte_fib6_delete; rte_fib6_find_existing; rte_fib6_free; - rte_fib6_lookup_bulk; rte_fib6_get_dp; rte_fib6_get_rib; + rte_fib6_lookup_bulk; rte_fib6_select_lookup; + rte_fib_add; + rte_fib_create; + rte_fib_delete; + rte_fib_find_existing; + rte_fib_free; + rte_fib_get_dp; + rte_fib_get_rib; + rte_fib_lookup_bulk; + rte_fib_select_lookup; local: *; }; diff --git a/lib/rib/version.map b/lib/rib/version.map index 6eb1252acb..f356fe8849 100644 --- a/lib/rib/version.map +++ b/lib/rib/version.map @@ -1,21 +1,6 @@ DPDK_22 { global: - rte_rib_create; - rte_rib_find_existing; - rte_rib_free; - rte_rib_get_depth; - rte_rib_get_ext; - rte_rib_get_ip; - rte_rib_get_nh; - rte_rib_get_nxt; - rte_rib_insert; - rte_rib_lookup; - rte_rib_lookup_parent; - rte_rib_lookup_exact; - rte_rib_set_nh; - rte_rib_remove; - rte_rib6_create; rte_rib6_find_existing; rte_rib6_free; @@ -26,10 +11,24 @@ DPDK_22 { rte_rib6_get_nxt; rte_rib6_insert; rte_rib6_lookup; - rte_rib6_lookup_parent; rte_rib6_lookup_exact; - rte_rib6_set_nh; + rte_rib6_lookup_parent; rte_rib6_remove; + rte_rib6_set_nh; + rte_rib_create; + rte_rib_find_existing; + rte_rib_free; + rte_rib_get_depth; + rte_rib_get_ext; + rte_rib_get_ip; + rte_rib_get_nh; + rte_rib_get_nxt; + rte_rib_insert; + rte_rib_lookup; + rte_rib_lookup_exact; + rte_rib_lookup_parent; + rte_rib_remove; + rte_rib_set_nh; local: *; }; -- 2.23.0