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 20BA1A00E6 for ; Thu, 8 Aug 2019 11:31:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C81CF1B95A; Thu, 8 Aug 2019 11:31:38 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id E55574C94 for ; Thu, 8 Aug 2019 11:31:37 +0200 (CEST) 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 mx1.redhat.com (Postfix) with ESMTPS id 58AF430A5402; Thu, 8 Aug 2019 09:31:37 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-32.brq.redhat.com [10.40.204.32]) by smtp.corp.redhat.com (Postfix) with ESMTP id D5C7060BE1; Thu, 8 Aug 2019 09:31:34 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, stephen@networkplumber.org, bruce.richardson@intel.com, jerinj@marvell.com, arybchenko@solarflare.com Date: Thu, 8 Aug 2019 11:31:29 +0200 Message-Id: <1565256689-20923-1-git-send-email-david.marchand@redhat.com> In-Reply-To: <1564571177-25898-1-git-send-email-david.marchand@redhat.com> References: <1564571177-25898-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Thu, 08 Aug 2019 09:31:37 +0000 (UTC) Subject: [dpdk-dev] [PATCH v2] doc: announce lcore_config symbol removal 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" New accessors have been introduced to provide the hidden information. This symbol can now be kept internal. Signed-off-by: David Marchand Acked-by: Stephen Hemminger Acked-by: Bruce Richardson Acked-by: Jerin Jacob Acked-by: Andrew Rybchenko --- Changelog since v1: - added acks, - fixed little typo, --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 70fef52..ee15ab6 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -23,6 +23,10 @@ Deprecation Notices * eal: The function ``rte_eal_remote_launch`` will return new error codes after read or write error on the pipe, instead of calling ``rte_panic``. +* eal: The ``lcore_config`` struct and global symbol will be made private to + remove it from the externally visible ABI and allow it to be updated in the + future. + * eal: both declaring and identifying devices will be streamlined in v18.11. New functions will appear to query a specific port from buses, classes of device and device drivers. Device declaration will be made coherent with the -- 1.8.3.1