From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DF067A04BC; Thu, 8 Oct 2020 14:49:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6D4A41BFC6; Thu, 8 Oct 2020 14:49:40 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id F2CB31BF4A for ; Thu, 8 Oct 2020 14:49:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1602161376; 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=3dJ8zzhfPpnwbv8IdUkdmCRlU53zhE1rkdwgSLBFIGM=; b=Pt5Lbp5FZl8MbVR+zSEd2fnNV00+fIQ50l+xruPOPSFBWu1uiKGudEIQKTTeY3kaIDxCrd ioRF/eupWGbHiJYbhmTkenCYNk53NFTt7WfwzxH/+qgbCq9D28biAFG96jUb4iu5zypxX6 K3dm6+jA/PkIkmVeldTtL1sxBboVrlE= 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-426-lKypMfJZP-mUsfYb_fZ6YQ-1; Thu, 08 Oct 2020 08:49:34 -0400 X-MC-Unique: lKypMfJZP-mUsfYb_fZ6YQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6247F835BB7; Thu, 8 Oct 2020 12:49:33 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.146]) by smtp.corp.redhat.com (Postfix) with ESMTP id 65ABB7EB74; Thu, 8 Oct 2020 12:49:32 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net Date: Thu, 8 Oct 2020 14:49:27 +0200 Message-Id: <20201008124927.7129-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 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] eal: fix experimental block for 20.11 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" In EAL, we try to sort the experimental symbols per the release they were introduced in. Fixes: 8929de043eb4 ("service: retrieve lcore active state") Signed-off-by: David Marchand --- lib/librte_eal/rte_eal_version.map | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map index 6165293b69..a93dea9fe6 100644 --- a/lib/librte_eal/rte_eal_version.map +++ b/lib/librte_eal/rte_eal_version.map @@ -394,12 +394,12 @@ EXPERIMENTAL { rte_lcore_dump; rte_lcore_iterate; rte_mp_disable; - rte_service_lcore_may_be_active; rte_thread_register; rte_thread_unregister; # added in 20.11 __rte_eal_trace_generic_size_t; + rte_service_lcore_may_be_active; }; INTERNAL { -- 2.23.0