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 DA10AA0032; Thu, 17 Mar 2022 01:11:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AB5EC41147; Thu, 17 Mar 2022 01:11:42 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 968C1407FF for ; Thu, 17 Mar 2022 01:11:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1647475900; x=1679011900; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=UObGCNNg3RcJTlCg5tI3R9mJQrjisIr7BtA1do6GutI=; b=FSN/n/NolY0/VMuyJb0OFUoaDqUYHnbAUuCnxqerb8sn/3FMqNnYqEFL uTjYkekVp1+OjCoa2/GQD7glwLUtSVR7ZPMIzjan3a5KBp/1iS02Ns0q7 uUykRcxrj3sBVTPDUmZXCBtr/NpAP97ompPBeY5j/W9XiQZ4uQCHRpDO3 raIjMCE96legXPNK+18oP8UmYgs0j7Scp11eoEDph4fAuPZPlbrUqSd5n i6dIvFCIPkDEdeaxfkRgrFefUqz1gPROI4jKn3Z4S1Wo8XV0iH72AORGd 1Ka5yMi50dAgekCB3uY6ENPliZbX9L9pCAx2e3FDyyWmuMYgYCFsqe0SW A==; X-IronPort-AV: E=McAfee;i="6200,9189,10288"; a="256934269" X-IronPort-AV: E=Sophos;i="5.90,187,1643702400"; d="scan'208";a="256934269" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2022 17:11:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,187,1643702400"; d="scan'208";a="646857630" Received: from skx-5gnr-sc12-4.sc.intel.com ([172.25.69.210]) by orsmga004.jf.intel.com with ESMTP; 16 Mar 2022 17:11:37 -0700 From: Nicolas Chautru To: dev@dpdk.org, gakhil@marvell.com, thomas@monjalon.net Cc: trix@redhat.com, ray.kinsella@intel.com, bruce.richardson@intel.com, hemant.agrawal@nxp.com, mingshan.zhang@intel.com, david.marchand@redhat.com, Nicolas Chautru Subject: [PATCH v1] doc: announce changes in bbdev related to enum extension Date: Wed, 16 Mar 2022 17:11:26 -0700 Message-Id: <1647475886-31007-2-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1647475886-31007-1-git-send-email-nicolas.chautru@intel.com> References: <1647475886-31007-1-git-send-email-nicolas.chautru@intel.com> 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 Intent to resolve in DPDK 22.11 historical usage which prevents graceful extension of enum and API without troublesome ABI breakage as well as extending API RTE_BBDEV_OP_FFT for new operation type in bbdev. Signed-off-by: Nicolas Chautru --- 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 4e5b23c..238920e 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -112,6 +112,14 @@ Deprecation Notices session and the private data of session. An opaque pointer can be exposed directly to application which can be attached to the ``rte_crypto_op``. +* bbdev: Will fix extending some enum breaking the ABI. Notably +deprecating ``RTE_BBDEV_OP_TYPE_COUNT`` terminating the ``rte_bbdev_op_type`` +and use fixed array size when required to allow for future enum extension. +Will also remove some of the inlining when causing ABI future-proof concerns. +Will extend API to support new operation type ``RTE_BBDEV_OP_FFT`` as per this +RFC https://patchwork.dpdk.org/project/dpdk/list/?series=22111 +This should be updated in DPDK 22.11. + * security: Hide structure ``rte_security_session`` and expose an opaque pointer for the private data to the application which can be attached to the packet while enqueuing. -- 1.8.3.1