[v2,0/5] bbdev: API extension for 23.11
Message ID | 20230615164901.40845-1-nicolas.chautru@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B9C7342CC8; Thu, 15 Jun 2023 18:54:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 41BC540FAE; Thu, 15 Jun 2023 18:54:52 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 4590140A8B for <dev@dpdk.org>; Thu, 15 Jun 2023 18:54:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686848090; x=1718384090; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=bkwPzJ24UuoZ9L/UyF4/1T0rGi2PfomAi5PWHvxUWYo=; b=HOeGGvCpFO28Ei1/9mDN+v6otQ7/uqqQwKZFHYDNjICvURZdTtUBAcNx aL6ehDarbk6ECInWB6JC/4aeEYUdwuAogHXo6uqLCwGec4++JwbrlW5NQ iRIGzcr0Uug44YVVDgPY7bcHbwmtbJdnVU1MrIP6DucgNs6VBGTlAfORw o2svxi705yavGR7J1EjKMBje82ZVuDgg4Bd3QplZHAW2vtdvpH8W+dA17 +9cYoeurAGJ/VWJVdEFRmQtY9swbYHgfBiuAMYP+ezaWfSgw+WnDgLxIc mJEeUA5zWjaJOPv2g4w3+p4AanKgVHqpHf9ms8a0zmfv25igDzVvqxtei Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="356469798" X-IronPort-AV: E=Sophos;i="6.00,245,1681196400"; d="scan'208";a="356469798" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2023 09:54:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="712518704" X-IronPort-AV: E=Sophos;i="6.00,245,1681196400"; d="scan'208";a="712518704" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by orsmga002.jf.intel.com with ESMTP; 15 Jun 2023 09:54:26 -0700 From: Nicolas Chautru <nicolas.chautru@intel.com> To: dev@dpdk.org, maxime.coquelin@redhat.com Cc: trix@redhat.com, hemant.agrawal@nxp.com, david.marchand@redhat.com, hernan.vargas@intel.com, Nicolas Chautru <nicolas.chautru@intel.com> Subject: [PATCH v2 0/5] bbdev: API extension for 23.11 Date: Thu, 15 Jun 2023 16:48:56 +0000 Message-Id: <20230615164901.40845-1-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org |
Message
Chautru, Nicolas
June 15, 2023, 4:48 p.m. UTC
v2: moving the new mld functions at the end of struct rte_bbdev to avoid ABI offset changes based on feedback with Maxime. Adding a commit to waive the FFT ABI warning since that experimental function could break ABI (let me know if preferred to be merged with the FFT commit causing the FFT change). Including v1 for extending the bbdev api for 23.11. The new MLD-TS is expected to be non ABI compatible, the other ones should not break ABI. I will send a deprecation notice in parallel. This introduces a new operation (on top of FEC and FFT) to support equalization for MLD-TS. There also more modular API extension for existing FFT and FEC operation. Thanks Nic Nicolas Chautru (5): bbdev: add operation type for MLDTS procession bbdev: add new capabilities for FFT processing bbdev: add new capability for FEC 5G UL processing bbdev: improving error handling for queue configuration devtools: ignore changes into bbdev experimental API devtools/libabigail.abignore | 4 +- doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ lib/bbdev/rte_bbdev.c | 26 +++--- lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ lib/bbdev/rte_bbdev_op.h | 143 +++++++++++++++++++++++++++++++- lib/bbdev/version.map | 5 ++ 6 files changed, 323 insertions(+), 14 deletions(-)
Comments
Hi Maxime, Kind reminder to get a review on this series: https://patchwork.dpdk.org/project/dpdk/list/?series=28544 Thanks, Hernan > -----Original Message----- > From: Chautru, Nicolas <nicolas.chautru@intel.com> > Sent: Monday, July 17, 2023 5:29 PM > To: dev@dpdk.org; maxime.coquelin@redhat.com > Cc: Rix, Tom <trix@redhat.com>; hemant.agrawal@nxp.com; > david.marchand@redhat.com; Vargas, Hernan <hernan.vargas@intel.com> > Subject: RE: [PATCH v2 0/5] bbdev: API extension for 23.11 > > Hi Maxime, Hemant, > Can I get some review/ack for this serie please. > Thanks > Nic > > > -----Original Message----- > > From: Chautru, Nicolas <nicolas.chautru@intel.com> > > Sent: Thursday, June 15, 2023 9:49 AM > > To: dev@dpdk.org; maxime.coquelin@redhat.com > > Cc: Rix, Tom <trix@redhat.com>; hemant.agrawal@nxp.com; > > david.marchand@redhat.com; Vargas, Hernan <hernan.vargas@intel.com>; > > Chautru, Nicolas <nicolas.chautru@intel.com> > > Subject: [PATCH v2 0/5] bbdev: API extension for 23.11 > > > > v2: moving the new mld functions at the end of struct rte_bbdev to > > avoid ABI offset changes based on feedback with Maxime. > > Adding a commit to waive the FFT ABI warning since that experimental > > function could break ABI (let me know if preferred to be merged with > > the FFT commit causing the FFT change). > > > > > > Including v1 for extending the bbdev api for 23.11. > > The new MLD-TS is expected to be non ABI compatible, the other ones > > should not break ABI. > > I will send a deprecation notice in parallel. > > > > This introduces a new operation (on top of FEC and FFT) to support > > equalization for MLD-TS. There also more modular API extension for > > existing FFT and FEC operation. > > > > Thanks > > Nic > > > > > > Nicolas Chautru (5): > > bbdev: add operation type for MLDTS procession > > bbdev: add new capabilities for FFT processing > > bbdev: add new capability for FEC 5G UL processing > > bbdev: improving error handling for queue configuration > > devtools: ignore changes into bbdev experimental API > > > > devtools/libabigail.abignore | 4 +- > > doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ > > lib/bbdev/rte_bbdev.c | 26 +++--- > > lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ > > lib/bbdev/rte_bbdev_op.h | 143 > > +++++++++++++++++++++++++++++++- > > lib/bbdev/version.map | 5 ++ > > 6 files changed, 323 insertions(+), 14 deletions(-) > > > > -- > > 2.34.1
Hi Maxime, Hemant, Can we please get some extra review/ack for this bbdev serie. I would be good to apply on the baseband repo soon towards 23.11. Much appreciated! Nic > -----Original Message----- > From: Vargas, Hernan <hernan.vargas@intel.com> > Sent: Friday, August 4, 2023 9:14 AM > To: Chautru, Nicolas <nicolas.chautru@intel.com>; dev@dpdk.org; > maxime.coquelin@redhat.com > Cc: Rix, Tom <trix@redhat.com>; hemant.agrawal@nxp.com; > david.marchand@redhat.com > Subject: RE: [PATCH v2 0/5] bbdev: API extension for 23.11 > > Hi Maxime, > > Kind reminder to get a review on this series: > https://patchwork.dpdk.org/project/dpdk/list/?series=28544 > > Thanks, > Hernan > > > -----Original Message----- > > From: Chautru, Nicolas <nicolas.chautru@intel.com> > > Sent: Monday, July 17, 2023 5:29 PM > > To: dev@dpdk.org; maxime.coquelin@redhat.com > > Cc: Rix, Tom <trix@redhat.com>; hemant.agrawal@nxp.com; > > david.marchand@redhat.com; Vargas, Hernan > <hernan.vargas@intel.com> > > Subject: RE: [PATCH v2 0/5] bbdev: API extension for 23.11 > > > > Hi Maxime, Hemant, > > Can I get some review/ack for this serie please. > > Thanks > > Nic > > > > > -----Original Message----- > > > From: Chautru, Nicolas <nicolas.chautru@intel.com> > > > Sent: Thursday, June 15, 2023 9:49 AM > > > To: dev@dpdk.org; maxime.coquelin@redhat.com > > > Cc: Rix, Tom <trix@redhat.com>; hemant.agrawal@nxp.com; > > > david.marchand@redhat.com; Vargas, Hernan > <hernan.vargas@intel.com>; > > > Chautru, Nicolas <nicolas.chautru@intel.com> > > > Subject: [PATCH v2 0/5] bbdev: API extension for 23.11 > > > > > > v2: moving the new mld functions at the end of struct rte_bbdev to > > > avoid ABI offset changes based on feedback with Maxime. > > > Adding a commit to waive the FFT ABI warning since that experimental > > > function could break ABI (let me know if preferred to be merged with > > > the FFT commit causing the FFT change). > > > > > > > > > Including v1 for extending the bbdev api for 23.11. > > > The new MLD-TS is expected to be non ABI compatible, the other ones > > > should not break ABI. > > > I will send a deprecation notice in parallel. > > > > > > This introduces a new operation (on top of FEC and FFT) to support > > > equalization for MLD-TS. There also more modular API extension for > > > existing FFT and FEC operation. > > > > > > Thanks > > > Nic > > > > > > > > > Nicolas Chautru (5): > > > bbdev: add operation type for MLDTS procession > > > bbdev: add new capabilities for FFT processing > > > bbdev: add new capability for FEC 5G UL processing > > > bbdev: improving error handling for queue configuration > > > devtools: ignore changes into bbdev experimental API > > > > > > devtools/libabigail.abignore | 4 +- > > > doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ > > > lib/bbdev/rte_bbdev.c | 26 +++--- > > > lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ > > > lib/bbdev/rte_bbdev_op.h | 143 > > > +++++++++++++++++++++++++++++++- > > > lib/bbdev/version.map | 5 ++ > > > 6 files changed, 323 insertions(+), 14 deletions(-) > > > > > > -- > > > 2.34.1
Hi Nic, One small comment in the commit message. Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com> Regards Hemant On 15-Jun-23 10:18 PM, Nicolas Chautru wrote: > Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, report the message using the 'Report this email' button > > > v2: moving the new mld functions at the end of struct rte_bbdev to avoid > ABI offset changes based on feedback with Maxime. > Adding a commit to waive the FFT ABI warning since that experimental function > could break ABI (let me know if preferred to be merged with the FFT > commit causing the FFT change). > > > Including v1 for extending the bbdev api for 23.11. > The new MLD-TS is expected to be non ABI compatible, the other ones > should not break ABI. > I will send a deprecation notice in parallel. > > This introduces a new operation (on top of FEC and FFT) to support > equalization for MLD-TS. There also more modular API extension for > existing FFT and FEC operation. > > Thanks > Nic > > > Nicolas Chautru (5): > bbdev: add operation type for MLDTS procession > bbdev: add new capabilities for FFT processing > bbdev: add new capability for FEC 5G UL processing > bbdev: improving error handling for queue configuration > devtools: ignore changes into bbdev experimental API > > devtools/libabigail.abignore | 4 +- > doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ > lib/bbdev/rte_bbdev.c | 26 +++--- > lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ > lib/bbdev/rte_bbdev_op.h | 143 +++++++++++++++++++++++++++++++- > lib/bbdev/version.map | 5 ++ > 6 files changed, 323 insertions(+), 14 deletions(-) > > -- > 2.34.1 >
On 6/15/23 18:48, Nicolas Chautru wrote: > v2: moving the new mld functions at the end of struct rte_bbdev to avoid > ABI offset changes based on feedback with Maxime. > Adding a commit to waive the FFT ABI warning since that experimental function > could break ABI (let me know if preferred to be merged with the FFT > commit causing the FFT change). > > > Including v1 for extending the bbdev api for 23.11. > The new MLD-TS is expected to be non ABI compatible, the other ones > should not break ABI. > I will send a deprecation notice in parallel. > > This introduces a new operation (on top of FEC and FFT) to support > equalization for MLD-TS. There also more modular API extension for > existing FFT and FEC operation. > > Thanks > Nic > > > Nicolas Chautru (5): > bbdev: add operation type for MLDTS procession > bbdev: add new capabilities for FFT processing > bbdev: add new capability for FEC 5G UL processing > bbdev: improving error handling for queue configuration > devtools: ignore changes into bbdev experimental API > > devtools/libabigail.abignore | 4 +- > doc/guides/prog_guide/bbdev.rst | 83 ++++++++++++++++++ > lib/bbdev/rte_bbdev.c | 26 +++--- > lib/bbdev/rte_bbdev.h | 76 +++++++++++++++++ > lib/bbdev/rte_bbdev_op.h | 143 +++++++++++++++++++++++++++++++- > lib/bbdev/version.map | 5 ++ > 6 files changed, 323 insertions(+), 14 deletions(-) > Applied to next-baseband/for-main. Thanks, Maxime