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 11204A04DD; Thu, 2 Jan 2020 04:28:39 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C85901BF8E; Thu, 2 Jan 2020 04:28:38 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 57E2B1BF89 for ; Thu, 2 Jan 2020 04:28:37 +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 fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jan 2020 19:28:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,385,1571727600"; d="scan'208";a="419618003" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga005.fm.intel.com with ESMTP; 01 Jan 2020 19:28:36 -0800 Received: from fmsmsx113.amr.corp.intel.com (10.18.116.7) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 1 Jan 2020 19:28:36 -0800 Received: from shsmsx154.ccr.corp.intel.com (10.239.6.54) by FMSMSX113.amr.corp.intel.com (10.18.116.7) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 1 Jan 2020 19:28:35 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.30]) by SHSMSX154.ccr.corp.intel.com ([169.254.7.132]) with mapi id 14.03.0439.000; Thu, 2 Jan 2020 11:28:34 +0800 From: "Tu, Lijuan" To: "Ma, LihongX" , "dts@dpdk.org" CC: "Chen, Zhaoyan" , "Ma, LihongX" Thread-Topic: [dts] [PATCH V1 1/4] conf/crbs: add param which can config the dpdk tar side Thread-Index: AQHVvIeHoACslQJNj0CXD0tIlzFcn6fWwFIQ Date: Thu, 2 Jan 2020 03:28:34 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBA0EC8@SHSMSX101.ccr.corp.intel.com> References: <1577404987-1369-1-git-send-email-lihongx.ma@intel.com> In-Reply-To: <1577404987-1369-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 1/4] conf/crbs: add param which can config the dpdk tar side 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 the series, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong > Sent: Friday, December 27, 2019 8:03 AM > To: dts@dpdk.org > Cc: Chen, Zhaoyan ; Ma, LihongX > > Subject: [dts] [PATCH V1 1/4] conf/crbs: add param which can config the > dpdk tar side >=20 > the params snapshot_load_side can config 'tester' or 'dut', when > snapshot_load_side=3Dtester, it will copy dpdk.tar.gz from tester, when > snapshot_load_side=3Ddut, it will copy dpdk.tar.gz from dut. > the dpdk.tar.gz default on tester, and default path is dts/dep, if config > snapshot_load_side=3Ddut, should use --snapshot to specify a absolute pat= h of > dpdk.tar.gz on dut when start dts. >=20 > Signed-off-by: lihong > --- > conf/crbs.cfg | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) >=20 > diff --git a/conf/crbs.cfg b/conf/crbs.cfg index 5209555..2e6c948 100644 > --- a/conf/crbs.cfg > +++ b/conf/crbs.cfg > @@ -11,6 +11,9 @@ > # channels: Board channel number > # bypass_core0: Whether by pass core0 > # dut_cores: DUT core list, eg: 1,2,3,4,5,18-22 > +# snapshot_load_side: tester/dut, specify the dpdk.tar.gz on side > +# if value is dut, should combine the params --snapshot to use. > +# eg: ./dts --snapshot /root/tester/dpdk.tar.gz > [DUT IP1] > dut_ip=3Dxxx.xxx.xxx.xxx > dut_user=3Droot > @@ -24,6 +27,7 @@ pktgen_group=3D > channels=3D4 > bypass_core0=3DTrue > dut_cores=3D > +snapshot_load_side=3Dtester > [DUT IP2] > dut_ip=3Dyyy.yyy.yyy.yyy > dut_user=3Droot > @@ -36,4 +40,5 @@ ixia_group=3D > pktgen_group=3D > channels=3D4 > bypass_core0=3DTrue > -dut_cores=3D > \ No newline at end of file > +dut_cores=3D > +snapshot_load_side=3Dtester > -- > 2.7.4