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 53D26A0561; Mon, 20 Apr 2020 07:22:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4B84E1D176; Mon, 20 Apr 2020 07:22:05 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 01F4E1C219 for ; Mon, 20 Apr 2020 07:22:03 +0200 (CEST) IronPort-SDR: HbBw5YfneWsCQ49CI0RB/imUVe26CGGROnph/D2H4LQ7O8pU82KrRcBAYv221DE18hNSGFXy/7 YjYA429DmQDw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Apr 2020 22:22:01 -0700 IronPort-SDR: A399WNYHcHLdAtkyZQI7BNGZyQaTOY9PFyKYdIo7tEsjQQKwGwRndbMW175DjuqOuMRngeFx4N A4XFaRjuxzlw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,405,1580803200"; d="scan'208";a="288347389" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga008.jf.intel.com with ESMTP; 19 Apr 2020 22:22:01 -0700 Received: from fmsmsx603.amr.corp.intel.com (10.18.126.83) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 19 Apr 2020 22:22:01 -0700 Received: from fmsmsx603.amr.corp.intel.com (10.18.126.83) by fmsmsx603.amr.corp.intel.com (10.18.126.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Sun, 19 Apr 2020 22:22:01 -0700 Received: from shsmsx153.ccr.corp.intel.com (10.239.6.53) by fmsmsx603.amr.corp.intel.com (10.18.126.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256) id 15.1.1713.5 via Frontend Transport; Sun, 19 Apr 2020 22:22:00 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.129]) by SHSMSX153.ccr.corp.intel.com ([169.254.12.89]) with mapi id 14.03.0439.000; Mon, 20 Apr 2020 13:21:59 +0800 From: "Tu, Lijuan" To: "Xu, HailinX" , "dts@dpdk.org" CC: "Xu, HailinX" Thread-Topic: [dts] [PATCH v1] tests/TestSuite_vf_kernel:add nic carlsville. Thread-Index: AQHWExkD7iSa+DAGqUav5+l6u3Z/HqiBgQQw Date: Mon, 20 Apr 2020 05:21:58 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BC0D2A0@SHSMSX101.ccr.corp.intel.com> References: <1586949654-404802-1-git-send-email-hailinx.xu@intel.com> In-Reply-To: <1586949654-404802-1-git-send-email-hailinx.xu@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/TestSuite_vf_kernel:add nic carlsville. 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 Xu hailin > Sent: Wednesday, April 15, 2020 7:21 PM > To: dts@dpdk.org > Cc: Xu, HailinX > Subject: [dts] [PATCH v1] tests/TestSuite_vf_kernel:add nic carlsville. >=20 > From: xuhailin >=20 > carlsville driver is i40e, so config port mtu 3000. >=20 > Signed-off-by: xuhailin > --- > tests/TestSuite_vf_kernel.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 =3D> 1= 00755 > tests/TestSuite_vf_kernel.py >=20 > diff --git a/tests/TestSuite_vf_kernel.py b/tests/TestSuite_vf_kernel.py = old > mode 100644 new mode 100755 index 00634c4..f5a5038 > --- a/tests/TestSuite_vf_kernel.py > +++ b/tests/TestSuite_vf_kernel.py > @@ -560,7 +560,7 @@ class TestVfKernel(TestCase): > self.verify(self.dmac.upper() in out, "PF can't receive packet") >=20 > # Change kernel VF mtu as 3000,check no confusion/crash on DPDK = PF > - if self.nic.startswith('fortville'): > + if self.nic.startswith('fortville') or self.nic.startswith('carl= sville'): > self.vm0_dut.send_expect( > "ifconfig %s mtu 3000" % self.vm0_intf0, "#") >=20 > -- > 2.17.1