From patchwork Wed Aug 4 18:14:20 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shijith Thotton X-Patchwork-Id: 96666 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: 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 8AAD3A0C40; Wed, 4 Aug 2021 20:14:46 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 493B84014F; Wed, 4 Aug 2021 20:14:46 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id A8B1340143 for ; Wed, 4 Aug 2021 20:14:44 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 174IAUoo021125; Wed, 4 Aug 2021 11:14:41 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=igWjCs1iGyeeFCD5AFT1AER3MNAypuLKvxCC21ORhJQ=; b=GfiN5tU5QxVqRVw+N1OnX/Dfi11xunPvqdq54Xq+vOguwWecgKD2U0G6Odc4k+0X0cIN krDxhKhmIb9VP53/ZIt/bzquLUcNuFFQG6dl07/AN0WQiAV0EX1mWnJ3IZSgZhXakVrQ 59/SAFWIt3IH4TUa0GiYrH20eZxAgDhpKoSiXhKyqG2gORl4AuD6k0+DqYfJIvMlMIE0 GYQSpha2LNGXk27rsu/uWMpPE+Hv1NF/GLenSfSHaxolQpC+hw0tR3E7x8902dADE/Ol r86+cWyBMj4Kt6xwivXjmXGvpLCSQEdS/9wGsyLdH3c+4Dkiu6D8/xkN7v+CU0IVq+kD Tg== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 3a7aub43t2-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 04 Aug 2021 11:14:41 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Wed, 4 Aug 2021 11:14:39 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Wed, 4 Aug 2021 11:14:39 -0700 Received: from localhost.localdomain (unknown [10.28.34.29]) by maili.marvell.com (Postfix) with ESMTP id 298C83F705A; Wed, 4 Aug 2021 11:14:36 -0700 (PDT) From: Shijith Thotton To: CC: Shijith Thotton , , , , , , Ray Kinsella Date: Wed, 4 Aug 2021 23:44:20 +0530 Message-ID: <27596654d574825a71b4f422584194ebd8da6116.1628100722.git.sthotton@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: eDoQX2pJDj5KsK8rtvMQwCgKIN6G7GFJ X-Proofpoint-GUID: eDoQX2pJDj5KsK8rtvMQwCgKIN6G7GFJ X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-08-04_06:2021-08-04, 2021-08-04 signatures=0 Subject: [dpdk-dev] [PATCH] doc: announce change in crypto adapter metadata 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 Sender: "dev" In crypto adapter metadata, first 8 bytes of request info is a space holder for response info. For better clarity, reserved field should be removed from request info. New space for response info can be made by changing type of event crypto metadata to structure from union. Signed-off-by: Shijith Thotton Acked-by: Akhil Goyal Acked-by: Ray Kinsella Acked-by: Jerin Jacob --- doc/guides/rel_notes/deprecation.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 9584d6bfd7..c131f1a947 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -147,3 +147,9 @@ Deprecation Notices * cmdline: ``cmdline`` structure will be made opaque to hide platform-specific content. On Linux and FreeBSD, supported prior to DPDK 20.11, original structure will be kept until DPDK 21.11. + +* eventdev: Reserved bytes of ``rte_event_crypto_request`` is a space holder + for ``response_info``. Both should be decoupled for better clarity. New + space for ``response_info`` can be made by changing + ``rte_event_crypto_metadata`` type to structure from union. This change is + targeted for DPDK 21.11.