From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3901EA0525; Fri, 21 Feb 2020 03:03:26 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2FD381BF9D; Fri, 21 Feb 2020 03:03:26 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id C3E2A1BF9D for ; Fri, 21 Feb 2020 03:03:24 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Feb 2020 18:03:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,466,1574150400"; d="scan'208";a="435040902" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga005.fm.intel.com with ESMTP; 20 Feb 2020 18:03:23 -0800 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 20 Feb 2020 18:03:23 -0800 Received: from shsmsx154.ccr.corp.intel.com (10.239.6.54) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 20 Feb 2020 18:03:23 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.222]) by SHSMSX154.ccr.corp.intel.com ([169.254.7.141]) with mapi id 14.03.0439.000; Fri, 21 Feb 2020 10:03:21 +0800 From: "Tu, Lijuan" To: "Ma, LihongX" , "dts@dpdk.org" CC: "Ma, LihongX" Thread-Topic: [dts] [PATCH V1] tests/perf_virtio_user_loopback: rm useless params when start testpmd Thread-Index: AQHV57WMtteGTalIGUiDOPWnjwEhxqgk5r+w Date: Fri, 21 Feb 2020 02:03:20 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBCC956@SHSMSX101.ccr.corp.intel.com> References: <1582152554-13496-1-git-send-email-lihongx.ma@intel.com> In-Reply-To: <1582152554-13496-1-git-send-email-lihongx.ma@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V1] tests/perf_virtio_user_loopback: rm useless params when start testpmd X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong > Sent: Thursday, February 20, 2020 6:49 AM > To: dts@dpdk.org > Cc: Ma, LihongX > Subject: [dts] [PATCH V1] tests/perf_virtio_user_loopback: rm useless > params when start testpmd >=20 > Signed-off-by: lihong > --- > tests/TestSuite_perf_virtio_user_loopback.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/tests/TestSuite_perf_virtio_user_loopback.py > b/tests/TestSuite_perf_virtio_user_loopback.py > index a27b049..15bc54c 100644 > --- a/tests/TestSuite_perf_virtio_user_loopback.py > +++ b/tests/TestSuite_perf_virtio_user_loopback.py > @@ -107,7 +107,7 @@ class TestPerfVirtioUserLoopback(TestCase): > eal_params =3D self.dut.create_eal_parameters(cores=3Dself.core_= list_host, > no_pci=3DTrue, prefix=3D'vhost') > command_line_client =3D self.dut.target + "/app/testpmd %s " + \ > - "--socket-mem %s --legacy-mem --vdev " + = \ > + "--socket-mem %s --vdev " + \ > "'net_vhost0,iface=3Dvhost-net,queues=3D%d= ' -- -i --nb- > cores=3D%d " + \ > "--rxq=3D%d --txq=3D%d --txd=3D%d --rxd=3D= %d" > command_line_client =3D command_line_client % ( @@ -124,7 +124,7 > @@ class TestPerfVirtioUserLoopback(TestCase): > eal_params =3D self.dut.create_eal_parameters(cores=3Dself.core_= list_user, > no_pci=3DTrue, prefix=3D'virtio') > command_line_user =3D self.dut.target + "/app/testpmd %s " + \ > - " --socket-mem %s --legacy-mem " + \ > + " --socket-mem %s " + \ > "-- > vdev=3Dnet_virtio_user0,mac=3D00:01:02:03:04:05,path=3D./vhost- > net,queues=3D%d,%s " + \ > "-- -i %s --rss-ip --nb-cores=3D%d --rxq=3D%= d --txq=3D%d --txd=3D%d -- > rxd=3D%d" > command_line_user =3D command_line_user % ( > -- > 2.7.4