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 B57EAA0588; Thu, 16 Apr 2020 10:03:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 979F41C1E6; Thu, 16 Apr 2020 10:03:11 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 1843C1C1E2 for ; Thu, 16 Apr 2020 10:03:08 +0200 (CEST) IronPort-SDR: Ve4+i9HBOmVMLRDyq+2PEIXj96XJLYR5I6N7VWx7otRqDSJCQmZfKnx/pWBXS/+GJK6SDUuhha i5lzxkLrLWpg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Apr 2020 01:03:08 -0700 IronPort-SDR: mTpSUORR5YElIpccCphLvYuRSkjUeXR5X5ckFAOdPqAG0OoJv5gOFiaERRfEluJFJyPf/Yu54L IgcN7CHrOekg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,390,1580803200"; d="scan'208";a="245915489" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga008.fm.intel.com with ESMTP; 16 Apr 2020 01:03:07 -0700 Received: from shsmsx602.ccr.corp.intel.com (10.109.6.142) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 16 Apr 2020 01:03:07 -0700 Received: from shsmsx603.ccr.corp.intel.com (10.109.6.143) by SHSMSX602.ccr.corp.intel.com (10.109.6.142) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Thu, 16 Apr 2020 16:03:05 +0800 Received: from shsmsx603.ccr.corp.intel.com ([10.109.6.143]) by SHSMSX603.ccr.corp.intel.com ([10.109.6.143]) with mapi id 15.01.1713.004; Thu, 16 Apr 2020 16:03:05 +0800 From: "Ma, LihongX" To: "dts@dpdk.org" CC: "Xu, HailinX" , "Yu, PingX" Thread-Topic: [dts] [PATCH v1] tests/TestSuite_vf_kernel:add nic carlsville. Thread-Index: AQHWExkDkosp9zIvKk6mVc75DP3Pxqh63lEAgACGNCA= Date: Thu, 16 Apr 2020 08:03:04 +0000 Message-ID: <80e098853dcc442785be8775fbf0c442@intel.com> References: <1586949654-404802-1-git-send-email-hailinx.xu@intel.com> <73823ced6dc7443ab131a49a086b12f5@intel.com> In-Reply-To: <73823ced6dc7443ab131a49a086b12f5@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.36] 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" Tested-by: ma,lihong Regards, Ma,lihong -----Original Message----- From: Yu, PingX=20 Sent: Thursday, April 16, 2020 4:02 PM To: Xu, HailinX ; Ma, LihongX Cc: Xu, HailinX Subject: RE: [dts] [PATCH v1] tests/TestSuite_vf_kernel:add nic carlsville. Lihong, FYI. Regards, Yu Ping -----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. From: xuhailin carlsville driver is i40e, so config port mtu 3000. Signed-off-by: xuhailin --- tests/TestSuite_vf_kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 =3D> 100= 755 tests/TestSuite_vf_kernel.py diff --git a/tests/TestSuite_vf_kernel.py b/tests/TestSuite_vf_kernel.py ol= d 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('carlsv= ille'): self.vm0_dut.send_expect( "ifconfig %s mtu 3000" % self.vm0_intf0, "#") =20 -- 2.17.1