From patchwork Wed Feb 21 16:13:19 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavan Nikhilesh Bhagavatula X-Patchwork-Id: 136969 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 D501243B64; Wed, 21 Feb 2024 17:13:30 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 61EBB402D1; Wed, 21 Feb 2024 17:13:30 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id DD8BA402CE for ; Wed, 21 Feb 2024 17:13:28 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.24/8.17.1.24) with ESMTP id 41L7HerL027443; Wed, 21 Feb 2024 08:13:27 -0800 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=kdytuINI rTrCwu6ltz80eOdGKwGyxn2Oyu7JsMwufwU=; b=CcO1tkWkisUAMEwWkDK6bJ6C iZtOQCGN1APjNRuaXuzxZ14o6wRSQqvQMqiXqKxGsDyrAntrkHumQS0Y1yhqmhDi cmuR89yp1xfTzBWENgrUfUNzGyKBBFyd6zMVrDU/I5K9jfO8h76NJTFotNB1oIMA CmMnhCNPaoKzk0pujFJULxAlVxxRWPukAFPB/XGa2k+2hk2EASB042yhHiaLHx5w XwII+tqYl1yNhhLK0Gsx/H2sS2bfQYhtF1UcLzWQPG9bn2l9sbDVJWaHzu7kO2Wd IXi0ghQkzOlM7gby5a8VJ72zEJvlbhJkk1/9tnEYCegNeEleopnqEH+ztQRA+w== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3wd21j4hvy-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 21 Feb 2024 08:13:27 -0800 (PST) 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.48; Wed, 21 Feb 2024 08:13:25 -0800 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.48 via Frontend Transport; Wed, 21 Feb 2024 08:13:25 -0800 Received: from MININT-80QBFE8.corp.innovium.com (unknown [10.28.164.106]) by maili.marvell.com (Postfix) with ESMTP id 777233F70AA; Wed, 21 Feb 2024 08:13:23 -0800 (PST) From: To: , , , CC: , Pavan Nikhilesh Subject: [PATCH] doc: deprecate graph data structures Date: Wed, 21 Feb 2024 21:43:19 +0530 Message-ID: <20240221161319.7054-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: vBGLRF1CxorSFP_EJVjDruoOaUYreroR X-Proofpoint-ORIG-GUID: vBGLRF1CxorSFP_EJVjDruoOaUYreroR X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.272,Aquarius:18.0.1011,Hydra:6.0.619,FMLib:17.11.176.26 definitions=2024-02-21_03,2024-02-21_02,2023-05-22_02 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 Deprecate rte_node, rte_node_register and rte_graph_cluster_node_stats structures as will be extended to include node specific error counters and error description. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob Acked-by: Nithin Dabilpuram Acked-by: Zhirun Yan --- doc/guides/rel_notes/deprecation.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 10630ba255..b3dfd06ed6 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -142,3 +142,8 @@ Deprecation Notices will be deprecated and subsequently removed in DPDK 24.11 release. Before this, the new port library API (functions rte_swx_port_*) will gradually transition from experimental to stable status. + +* graph: The graph library data structures will be modified to + support node specific errors, the structures ``rte_node``, + ``rte_node_register`` and ``rte_graph_cluster_node_stats`` will be + extended to include node error counters and error description.