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 4A59E45B26; Sun, 13 Oct 2024 08:57:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1403840151; Sun, 13 Oct 2024 08:57:29 +0200 (CEST) Received: from mail.lysator.liu.se (mail.lysator.liu.se [130.236.254.3]) by mails.dpdk.org (Postfix) with ESMTP id 720AA4003C for ; Sun, 13 Oct 2024 08:57:27 +0200 (CEST) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 10EB9A92D for ; Sun, 13 Oct 2024 08:57:27 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id D44DFA92C; Sun, 13 Oct 2024 08:57:26 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on hermod.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL, T_SCC_BODY_TEXT_LINE autolearn=disabled version=4.0.0 X-Spam-Score: -1.2 Received: from [192.168.1.85] (h-62-63-215-114.A163.priv.bahnhof.se [62.63.215.114]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 28CC3A9A7; Sun, 13 Oct 2024 08:57:24 +0200 (CEST) Message-ID: <52eec03e-c3c5-427f-9768-54548c9faa1b@lysator.liu.se> Date: Sun, 13 Oct 2024 08:57:23 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2] doc: announce single-event enqueue/dequeue ABI change To: David Marchand , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= Cc: jerinj@marvell.com, Thomas Monjalon , Jerin Jacob , dev@dpdk.org, Pavan Nikhilesh , Timothy McDaniel , Hemant Agrawal , Sachin Saxena , Harry van Haaren , Liang Ma , Peter Mccarthy References: <20230705084816.245527-1-mattias.ronnblom@ericsson.com> <20230705111219.245869-1-mattias.ronnblom@ericsson.com> Content-Language: en-US From: =?UTF-8?Q?Mattias_R=C3=B6nnblom?= In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP 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 On 2024-10-11 16:42, David Marchand wrote: > On Wed, Jul 5, 2023 at 1:18 PM Mattias Rönnblom > wrote: >> >> Announce the removal of the single-event enqueue and dequeue >> operations from the eventdev ABI. >> >> Signed-off-by: Mattias Rönnblom >> >> --- >> PATCH v2: Fix commit subject prefix. >> --- >> doc/guides/rel_notes/deprecation.rst | 8 ++++++++ >> 1 file changed, 8 insertions(+) >> >> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst >> index 66431789b0..ca192d838d 100644 >> --- a/doc/guides/rel_notes/deprecation.rst >> +++ b/doc/guides/rel_notes/deprecation.rst >> @@ -153,3 +153,11 @@ Deprecation Notices >> The new port library API (functions rte_swx_port_*) >> will gradually transition from experimental to stable status >> starting with DPDK 23.07 release. >> + >> +* eventdev: The single-event (non-burst) enqueue and dequeue >> + operations, used by static inline burst enqueue and dequeue >> + functions in , will be removed in DPDK 23.11. This >> + simplification includes changing the layout and potentially also the >> + size of the public rte_event_fp_ops struct, breaking the ABI. Since >> + these functions are not called directly by the application, the API >> + remains unaffected. > > Looks like it was missed in 23.11, can/should we finish this cleanup in 24.11? > > Yes, sure. Jerin, should I submit a patch?