From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id AF78E292D for ; Fri, 23 Jun 2017 14:21:13 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP; 23 Jun 2017 05:21:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,378,1493708400"; d="scan'208";a="984405350" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga003.jf.intel.com with ESMTP; 23 Jun 2017 05:21:10 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by irsmsx110.ger.corp.intel.com (163.33.3.25) with Microsoft SMTP Server (TLS) id 14.3.319.2; Fri, 23 Jun 2017 13:21:09 +0100 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.211]) by irsmsx155.ger.corp.intel.com ([169.254.14.182]) with mapi id 14.03.0319.002; Fri, 23 Jun 2017 13:21:09 +0100 From: "Van Haaren, Harry" To: Jerin Jacob , "dev@dpdk.org" CC: "Richardson, Bruce" , "hemant.agrawal@nxp.com" , "Eads, Gage" , "nipun.gupta@nxp.com" , "Vangati, Narender" , "Rao, Nikhil" , "gprathyusha@caviumnetworks.com" Thread-Topic: [dpdk-dev] [PATCH 00/33] introduce generic eventdev test application framework Thread-Index: AQHS1+zu2ZTRuBtjjEqK/fJPmr0l3KIyhg2w Date: Fri, 23 Jun 2017 12:21:08 +0000 Message-ID: References: <20170528195854.6064-1-jerin.jacob@caviumnetworks.com> In-Reply-To: <20170528195854.6064-1-jerin.jacob@caviumnetworks.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMDBmZjcwMWYtZGFmNi00NmU2LWFmOWQtZDRlOWFhNDRmZGMyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImtHZ3MrMmJIYlB1Z0pZRVVyTDdcL0wxZzlkbFhmMnZya2NUNnU4RGtcL0Fkaz0ifQ== x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 00/33] introduce generic eventdev test application framework 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: , X-List-Received-Date: Fri, 23 Jun 2017 12:21:14 -0000 > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > Sent: Sunday, May 28, 2017 8:58 PM > To: dev@dpdk.org > Cc: Richardson, Bruce ; Van Haaren, Harry > ; hemant.agrawal@nxp.com; Eads, Gage ; > nipun.gupta@nxp.com; Vangati, Narender ; Rao,= Nikhil > ; gprathyusha@caviumnetworks.com; Jerin Jacob > > Subject: [dpdk-dev] [PATCH 00/33] introduce generic eventdev test applica= tion framework >=20 > The dpdk-test-eventdev tool is a Data Plane Development Kit (DPDK) > application that allows exercising various eventdev use cases. This > application has a generic framework to add new eventdev based test cases > to verify functionality and measure the performance parameters of DPDK > eventdev devices. >=20 > This patch set adds the infrastructure for the generic eventdev test case= s > framework with four test cases. >=20 > 1)perf_queue: test to measure the throughput and forward latency of event= dev > pipeline on different PMDs > 2)perf_atq: functionally same as perf_queue. But using "all type queues" > eventdev infrastructure > 3)order_queue: test to verify the ingress event ordering and atomic > schedule type > 4)order_atq: functionally same as order_queue. But using "all types queue= s" > eventdev infrastructure. >=20 > The tests are verified using both HW(OCTEONTX) and SW eventdev PMDs. >=20 > We need minor changes in the API specification to run this test cases on = HW PMD. > I will send those patches separately. >=20 > Since "all type queues" is not currently supported in SW implementation. > "All types queue" based tests returns "unsupported" on SW PMD. >=20 > Added detailed documentation for test operation and usage with diagrams i= n the > last five patches in the series. >=20 > /Jerin Nice work here - and a good idea to ensure standard tests can be performed = against all PMDs. I'll reply to a few patchset with particulars, in general this looks good t= o me. -Harry