From patchwork Fri Jun 24 09:09:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavan Nikhilesh Bhagavatula X-Patchwork-Id: 113431 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 4E287A0032; Fri, 24 Jun 2022 11:12:04 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3FA9A40A87; Fri, 24 Jun 2022 11:12:04 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 892D24069D for ; Fri, 24 Jun 2022 11:12:02 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25O8B5YO004408; Fri, 24 Jun 2022 02:09:59 -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=MTpdpM+GjfxlLOIAGfCGgFl3kvuRjl2DTAmpZAJELl0=; b=RwoTqL3h+8n849EIoY3pZUR3qOdYdlUUZUQ+a9jAodvT1v7pDi9UkrC24J3jnkw4/435 br7fiKVUiGeivBBud6DGhiomsX3lmkpSc7iTmAonFJmU/7hHjswP+GbCFSgT7x5br4Bl n73un75cIiBGGoFRh8dCSsbErIMiHZO6Ym7L7+KolujdU+2ge/j/bBCAV+PpswFmyN/Q RI/CnvHoJk+J788XbMIpLj/nY9NGoEiRWNBv3sWEm/jDZY+A/d9efiPUgXz2wY7btEtZ NuhLY4U5vZQqHS4+7nkxKmTfJzuAXmXjmWkgCi+6z8pUSkXe09JEus9bQoIYH5zGMvYD Mw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3gw9har630-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 24 Jun 2022 02:09:59 -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.2; Fri, 24 Jun 2022 02:09:57 -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.2 via Frontend Transport; Fri, 24 Jun 2022 02:09:57 -0700 Received: from MININT-80QBFE8.corp.innovium.com (unknown [10.28.161.88]) by maili.marvell.com (Postfix) with ESMTP id 6C8FF3F7070; Fri, 24 Jun 2022 02:09:55 -0700 (PDT) From: To: , Ray Kinsella CC: , Pavan Nikhilesh Subject: [PATCH] doc: announce change in event vector structure Date: Fri, 24 Jun 2022 14:39:51 +0530 Message-ID: <20220624090951.4833-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: aSTzHW_uqGbFTrNppNPxrN9850PiZegG X-Proofpoint-ORIG-GUID: aSTzHW_uqGbFTrNppNPxrN9850PiZegG X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-06-24_05,2022-06-23_01,2022-06-22_01 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 From: Pavan Nikhilesh The field `*u64s` in the structure `rte_event_vector` will be replaced with `u64s`. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob Acked-by: Abhinandan Gujjar Acked-by: Jay Jayatheerthan --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index a3c4f4ac09..6b50ec4865 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -128,3 +128,6 @@ Deprecation Notices * eventdev: The function pointer declaration ``eventdev_stop_flush_t`` will be renamed to ``rte_eventdev_stop_flush_t`` in DPDK 22.11. + +* eventdev: The element ``*u64s`` in the structure ``rte_event_vector`` is + deprecated and will be replaced with ``u64s`` in DPDK 22.11.