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 DBEC5A0505; Tue, 5 Apr 2022 07:42:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 102164283C; Tue, 5 Apr 2022 07:41:54 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 4E9494283C for ; Tue, 5 Apr 2022 07:41:52 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 2351OF5u017793; Mon, 4 Apr 2022 22:41:48 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=az74EPH1WwheDzfwWGagS89UEEVzd+WwrmbHf8xUiU4=; b=E4dfsDpPwWtjffZIJdSnzZCzCh9jYPao0/4vWZW0ii/FF2IpNVRyBkLT+VMrwz4aN87H qKWdMOK8ztxDl8uaTe5Asm82vX89br5KSxnzyz4gyQNDvTNsH5fIr2MK/OuMm0GrrxFl nBv5LofAPrEpM901r21ius/TQ9s7Nt3MYF6m7hKUzfsyE1XOCnLc6iTvHWIA90MQxKb+ 4uhUI1x2ZQ+SGNqIkLZZGg+b0BDJUNDei6ggRmYRY04cboBOL3l2xfip4bONphldWNe8 82yWX+vxgbfdZkNOQ6nrDktS4zi+VCQpHMcmUBip+M8sOpY6cW0fSjZQFteAjitsoZuO QQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3f6kupk7v0-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 04 Apr 2022 22:41:48 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Mon, 4 Apr 2022 22:41:47 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Mon, 4 Apr 2022 22:41:47 -0700 Received: from localhost.localdomain (unknown [10.28.34.29]) by maili.marvell.com (Postfix) with ESMTP id DB5D83F7059; Mon, 4 Apr 2022 22:41:44 -0700 (PDT) From: Shijith Thotton To: , CC: Shijith Thotton , , , , Ray Kinsella Subject: [PATCH v2 3/6] doc: announce change in event queue conf structure Date: Tue, 5 Apr 2022 11:11:00 +0530 Message-ID: X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: flgOoqBu_Op1eScMSsgYnS4GjffD-Q2w X-Proofpoint-GUID: flgOoqBu_Op1eScMSsgYnS4GjffD-Q2w X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.850,Hydra:6.0.425,FMLib:17.11.64.514 definitions=2022-04-04_09,2022-03-31_01,2022-02-23_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 Structure rte_event_queue_conf will be extended to include fields to support weight and affinity attribute. Once it gets added in DPDK 22.11, eventdev internal op, queue_attr_get can be removed. Signed-off-by: Shijith Thotton --- 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 4e5b23c53d..04125db681 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -125,3 +125,6 @@ Deprecation Notices applications should be updated to use the ``dmadev`` library instead, with the underlying HW-functionality being provided by the ``ioat`` or ``idxd`` dma drivers + +* eventdev: New fields to represent event queue weight and affinity will be + added to ``rte_event_queue_conf`` structure in DPDK 22.11. -- 2.25.1