From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id ADA47C5B57D for ; Tue, 2 Jul 2019 07:48:01 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 3C0302146F for ; Tue, 2 Jul 2019 07:48:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3C0302146F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 21D425B3E; Tue, 2 Jul 2019 09:48:00 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id D29785B3C; Tue, 2 Jul 2019 09:47:57 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Jul 2019 00:35:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,442,1557212400"; d="scan'208";a="166092856" Received: from orsmsx109.amr.corp.intel.com ([10.22.240.7]) by orsmga003.jf.intel.com with ESMTP; 02 Jul 2019 00:35:22 -0700 Received: from orsmsx122.amr.corp.intel.com ([169.254.11.7]) by ORSMSX109.amr.corp.intel.com ([169.254.11.153]) with mapi id 14.03.0439.000; Tue, 2 Jul 2019 00:35:22 -0700 From: "Rao, Nikhil" To: "jerinj@marvell.com" , "dev@dpdk.org" CC: "stable@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2] eventdev: fix doxygen comment Thread-Index: AQHVMKHiKgJpGpyJ30q+S5u+4w51caa278tw Date: Tue, 2 Jul 2019 07:35:21 +0000 Message-ID: <1F668163772FA946975B9466A9DFF729EDE6708C@ORSMSX122.amr.corp.intel.com> References: <20190619080309.32188-1-jerinj@marvell.com> <20190702064548.48265-1-jerinj@marvell.com> In-Reply-To: <20190702064548.48265-1-jerinj@marvell.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action x-originating-ip: [10.22.254.140] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2] 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" > -----Original Message----- > From: jerinj@marvell.com [mailto:jerinj@marvell.com] > Sent: Tuesday, July 2, 2019 12:16 PM > To: dev@dpdk.org; Jerin Jacob > Cc: stable@dpdk.org; Rao, Nikhil > Subject: [dpdk-dev] [PATCH v2] eventdev: fix doxygen comment >=20 > From: Jerin Jacob >=20 > Update rte_eventdev.h file description to adapt to Tx adapter changes. >=20 > Fixes: c9bf83947e2e ("eventdev: add eth Tx adapter APIs") > Cc: stable@dpdk.org > Cc: Nikhil Rao >=20 > Signed-off-by: Jerin Jacob > --- >=20 > v2: > - Removed refference to rte_event_eth_tx_adapter_enqueue() API and > made generic Tx adapter API to address > RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT > vs non RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT case(Nikhil) >=20 > --- > lib/librte_eventdev/rte_eventdev.h | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) >=20 > diff --git a/lib/librte_eventdev/rte_eventdev.h > b/lib/librte_eventdev/rte_eventdev.h > index 517cd8083..927f43c24 100644 > --- a/lib/librte_eventdev/rte_eventdev.h > +++ b/lib/librte_eventdev/rte_eventdev.h > @@ -181,9 +181,8 @@ > * 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 l= ike > - * ethdev to send the packet/event on the wire using ethdev > - * rte_eth_tx_burst() API. > + * on the final stage, the application may use Tx adapter API for > + maintaining > + * the ingress order and then send the packet/event on the wire. > * > * The point at which events are scheduled to ports depends on the devic= e. > * For hardware devices, scheduling occurs asynchronously without any > software > -- > 2.21.0 Reviewed-by: Nikhil Rao