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 53DC2A0577; Mon, 13 Apr 2020 13:27:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2667B2A5D; Mon, 13 Apr 2020 13:27:37 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id AAD60293C for ; Mon, 13 Apr 2020 13:27:35 +0200 (CEST) IronPort-SDR: cVfcle5+L5zkV+VCS3HhR1szJe2DWjeKr3JS6fu6jScYlizj1w7eP518hS1ksimFIHgIFRcAFt MjpmPnOUUlWA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Apr 2020 04:27:33 -0700 IronPort-SDR: zxieUNcACNXSkLgqIO3hkZHkVlE25hIKcbF6e1CHsJV72m1s6tJ2qYEopUFd5WwUhiroUcgCKi rVbYAWIKhwEw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,378,1580803200"; d="scan'208";a="331813196" Received: from unknown (HELO dpdk-zhaohy-t.localdomain) ([10.240.183.68]) by orsmga001.jf.intel.com with ESMTP; 13 Apr 2020 04:27:33 -0700 From: "Xu,Hailin" To: dts@dpdk.org Cc: xuhailin Date: Mon, 13 Apr 2020 19:20:24 +0800 Message-Id: <1586776824-168968-1-git-send-email-hailinx.xu@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH v1]tests/TestSuite_sriov_kvm: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 the nic support the suite. Signed-off-by: xuhailin --- tests/TestSuite_sriov_kvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_sriov_kvm.py b/tests/TestSuite_sriov_kvm.py index a8a2211..453bdeb 100644 --- a/tests/TestSuite_sriov_kvm.py +++ b/tests/TestSuite_sriov_kvm.py @@ -906,7 +906,7 @@ class TestSriovKvm(TestCase): for vf_mac in ["00:11:22:33:44:55", "00:55:44:33:22:11"]: if self.nic.startswith('niantic') or self.nic.startswith('sage'): set_mac_cmd = "mac_addr add port %d vf %d %s" - elif self.nic.startswith('fortville') or self.nic.startswith('fortpark'): + elif self.nic.startswith('fortville') or self.nic.startswith('fortpark') or self.nic.startswith('carlsville'): set_mac_cmd = "set port %d vf %d %s exact-mac-vlan on" self.host_testpmd.execute_cmd(set_mac_cmd % (port_id_0, vf_num, vf_mac)) -- 2.17.1