From patchwork Wed Jun 19 08:03:09 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerin Jacob Kollanukkaran X-Patchwork-Id: 54943 X-Patchwork-Delegate: jerinj@marvell.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6F9EB1C296; Wed, 19 Jun 2019 10:05:18 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 2C3371BCEC; Wed, 19 Jun 2019 10:05:17 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x5J85ATw028276; Wed, 19 Jun 2019 01:05:16 -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=pfpt0818; bh=6TRG4hwuc9KA4Yz+99Nbi9unOLWXtTM1QPOPwG8Qelc=; b=uBq9fZ+e3TB8zK6X6T0xgoWrhf6RLIwjFdmNtZfHxxqBydAvM8MM0f0oiynvaS1DBj89 eZhV+GIH2H/ePWY+sBqRIuWTE2K/1pquAiiAhCgUSdW8DZnB60YJxfnTswHhn4qqIOI8 hIA1XQ5ta6OBYWHwZY9fE3TKNVmOKxZzC20KN6jqJhETleXksGJyFSg59EoaRPjRKV81 bx03OejOvHK025m1/vp9L57zn6tnu4sNirYopqwO6EEAPDYpHMIjawKHhULBfmLcwL9O 4+kIlVvhkzZuv1ZoS18VCyEtVXzN9bDOkRLt43BzO7TPXaqZ7x+hVUiP0hROteNgVEiO OQ== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2t7810hr6g-6 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 19 Jun 2019 01:05:16 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Wed, 19 Jun 2019 01:03:18 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Wed, 19 Jun 2019 01:03:18 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id 5723E3F7040; Wed, 19 Jun 2019 01:03:17 -0700 (PDT) From: To: , Jerin Jacob CC: , Nikhil Rao Date: Wed, 19 Jun 2019 13:33:09 +0530 Message-ID: <20190619080309.32188-1-jerinj@marvell.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-19_04:, , signatures=0 Subject: [dpdk-dev] [PATCH] eventdev: fix doxygen comment X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" From: Jerin Jacob Update rte_eventdev.h file description to adapt to Tx adapter changes. Fixes: c9bf83947e2e ("eventdev: add eth Tx adapter APIs") Cc: stable@dpdk.org Cc: Nikhil Rao Signed-off-by: Jerin Jacob --- lib/librte_eventdev/rte_eventdev.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h index 517cd8083..a5ec5d99b 100644 --- a/lib/librte_eventdev/rte_eventdev.h +++ b/lib/librte_eventdev/rte_eventdev.h @@ -181,9 +181,9 @@ * The *dequeue* operation gets one or more events from the event ports. * The application process the events and send to downstream event queue through * rte_event_enqueue_burst() if it is an intermediate stage of event processing, - * on the final stage, the application may send to different subsystem like - * ethdev to send the packet/event on the wire using ethdev - * rte_eth_tx_burst() API. + * on the final stage, the application may send to Tx adapter for maintaining + * the ingress order and then to send the packet/event on the wire using + * rte_event_eth_tx_adapter_enqueue() API. * * The point at which events are scheduled to ports depends on the device. * For hardware devices, scheduling occurs asynchronously without any software