From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 0459B12008 for ; Mon, 21 May 2018 13:15:26 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 May 2018 04:15:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,426,1520924400"; d="scan'208";a="230379546" Received: from orsmsx105.amr.corp.intel.com ([10.22.225.132]) by fmsmga006.fm.intel.com with ESMTP; 21 May 2018 04:15:25 -0700 Received: from orsmsx160.amr.corp.intel.com (10.22.226.43) by ORSMSX105.amr.corp.intel.com (10.22.225.132) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 21 May 2018 04:15:25 -0700 Received: from orsmsx107.amr.corp.intel.com ([169.254.1.97]) by ORSMSX160.amr.corp.intel.com ([169.254.13.99]) with mapi id 14.03.0319.002; Mon, 21 May 2018 04:15:25 -0700 From: "Rao, Nikhil" To: "Varghese, Vipin" , "dev@dpdk.org" , "Jain, Deepak K" Thread-Topic: [PATCH v2] test/eventdev: add multi port test to suite Thread-Index: AQHT8PJztpho6hNMs0mJe9XanLG7DaQ6A9Pw Date: Mon, 21 May 2018 11:15:23 +0000 Message-ID: <1F668163772FA946975B9466A9DFF729EB58279B@ORSMSX107.amr.corp.intel.com> References: <1526900209-91364-1-git-send-email-vipin.varghese@intel.com> In-Reply-To: <1526900209-91364-1-git-send-email-vipin.varghese@intel.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.200.100 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] test/eventdev: add multi port test to suite 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: Mon, 21 May 2018 11:15:27 -0000 Hi Vipin, > -----Original Message----- > From: Varghese, Vipin > Sent: Monday, May 21, 2018 4:27 PM > To: dev@dpdk.org; Rao, Nikhil ; Jain, Deepak K > > Cc: Varghese, Vipin > Subject: [PATCH v2] test/eventdev: add multi port test to suite >=20 > Add a new test to enhance the test suite, to allow multiple eth ports rx = queue > to be added to rx bridge adapter. Update the test function to reflect cha= nge > of port index from 8 to 16 bit >=20 > Signed-off-by: Vipin Varghese > Acked-by: Nikhil Rao > --- >=20 > Changes in V2: > - reprhased the variable names for dtiver - Nikhil Rao > - Initialization removed for driver_name - Nikhil Rao > - removed adapter capability instance - Nikhil Rao > - reprhased comment - Nikhil Rao > --- > test/test/test_event_eth_rx_adapter.c | 78 > ++++++++++++++++++++++++++++++++++- > 1 file changed, 77 insertions(+), 1 deletion(-) >=20 > diff --git a/test/test/test_event_eth_rx_adapter.c > b/test/test/test_event_eth_rx_adapter.c >=20 > + > + err =3D rte_event_eth_rx_adapter_caps_get(TEST_DEV_ID, > TEST_ETHDEV_ID, > + &cap); > + TEST_ASSERT(err =3D=3D 0, "Expected 0 got %d", err); > + You can remove the call to caps_get, cap isn't referenced. Nikhil