From patchwork Tue Mar 29 13:11:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shijith Thotton X-Patchwork-Id: 109014 X-Patchwork-Delegate: jerinj@marvell.com 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 D6641A0508; Tue, 29 Mar 2022 15:12:25 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8C734428E9; Tue, 29 Mar 2022 15:12:09 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 233D8428E2 for ; Tue, 29 Mar 2022 15:12:08 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 22T6sMHx023015; Tue, 29 Mar 2022 06:12:05 -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=QslzJ/NAi/aMx7XIxQEmRwD+4NCl38qrGaunmSVN7DXWlN9w17YQP4FjEzui+nvHu9/7 3lMsP3NPatQSgX48mT/c8MxFk0AbRy5rwEtNbPpszJrC1QrpiVBdHnEfyQZuTmoiuHY2 5+nUgKjqLVMlrZOckKzTfCFlGtv5uGuBnC5CCkmNEPLIiLcc6781XgrpDQRo23wVHuq8 cDATOIIBZ8zNPNCej173dUrXwrwz4ejFgK1rwrMUytw/PzRv7WKON7LvXhXkH9zADAJD r4TFcuorkxsX+vxaX4ZttylQPgrdaGLwwLZJ5mcMEQ5S/eoD7D5CL7MZ556OiCHwynB3 Fg== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3f22bnc8sn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 29 Mar 2022 06:12:05 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Tue, 29 Mar 2022 06:12:02 -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; Tue, 29 Mar 2022 06:12:03 -0700 Received: from localhost.localdomain (unknown [10.28.34.29]) by maili.marvell.com (Postfix) with ESMTP id 4F72C3F7062; Tue, 29 Mar 2022 06:12:01 -0700 (PDT) From: Shijith Thotton To: , CC: Shijith Thotton , , "Ray Kinsella" Subject: [PATCH 3/6] doc: announce change in event queue conf structure Date: Tue, 29 Mar 2022 18:41:02 +0530 Message-ID: X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 X-Proofpoint-GUID: 2J7Ga-JcjJ5YF1CUJM5O04Q0EPITF-Hs X-Proofpoint-ORIG-GUID: 2J7Ga-JcjJ5YF1CUJM5O04Q0EPITF-Hs 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-03-29_04,2022-03-29_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.