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 CBC9CA0563; Wed, 15 Apr 2020 13:28:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AA7FF1D6E1; Wed, 15 Apr 2020 13:28:24 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id A59791D6DD for ; Wed, 15 Apr 2020 13:28:22 +0200 (CEST) IronPort-SDR: MIefnPHWusIbsnFmZwmGOcFokODgSNh7nji8lae5Qh6YgTtV6IljFitzF0p/HJu/TXPZuelb8b +kwF1RjNdlvg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Apr 2020 04:28:21 -0700 IronPort-SDR: EC/OHqbyQw0E31VGLFH6oKA/1FycwBf206Vtk2vvqH/jr3xY6YyLWNirMGGkPhnCWj56fgxcy5 nOkIHJoF22Bw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,386,1580803200"; d="scan'208";a="332471543" Received: from unknown (HELO dpdk-zhaohy-t.localdomain) ([10.240.183.68]) by orsmga001.jf.intel.com with ESMTP; 15 Apr 2020 04:28:20 -0700 From: Xu hailin To: dts@dpdk.org Cc: xuhailin Date: Wed, 15 Apr 2020 19:20:54 +0800 Message-Id: <1586949654-404802-1-git-send-email-hailinx.xu@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [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" 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 => 100755 tests/TestSuite_vf_kernel.py 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") # 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('carlsville'): self.vm0_dut.send_expect( "ifconfig %s mtu 3000" % self.vm0_intf0, "#") -- 2.17.1