From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 06/33] app/testeventdev: define the test options Date: Mon, 3 Jul 2017 12:40:34 +0530 Message-ID: <20170703071032.GA23948@jerin> References: <20170528195854.6064-1-jerin.jacob@caviumnetworks.com> <20170528195854.6064-7-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev@dpdk.org" , "Richardson, Bruce" , "hemant.agrawal@nxp.com" , "Eads, Gage" , "nipun.gupta@nxp.com" , "Vangati, Narender" , "Rao, Nikhil" , "gprathyusha@caviumnetworks.com" To: "Van Haaren, Harry" Return-path: Received: from NAM02-SN1-obe.outbound.protection.outlook.com (mail-sn1nam02on0082.outbound.protection.outlook.com [104.47.36.82]) by dpdk.org (Postfix) with ESMTP id 354B82C39 for ; Mon, 3 Jul 2017 09:10:57 +0200 (CEST) Content-Disposition: inline In-Reply-To: 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----- > Date: Fri, 23 Jun 2017 13:07:10 +0000 > 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" > > Subject: RE: [dpdk-dev] [PATCH 06/33] app/testeventdev: define the test > options > > > 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 06/33] app/testeventdev: define the test options > > > > Define the test options that used across all test cases and > > fill the default values for the same. > > > > Signed-off-by: Jerin Jacob > > Signed-off-by: Guduri Prathyusha > > > > > > +void > > +evt_options_default(struct evt_options *opt) > > +{ > > + memset(opt, 0, sizeof(*opt)); > > + opt->verbose_level = 1; /* Enable minimal prints */ > > + opt->dev_id = 0; > > + strncpy(opt->test_name, "queue_order", EVT_TEST_NAME_MAX_LEN); > > I think "queue_order" isn't a valid test name, we should probably make the default test to run something that is supported by all PMDs, performance testing of atomic traffic? Good catch. I will change to "order_queue". It supported on all PMD > > With that resolved, > > Acked-by: Harry van Haaren