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 C3075A046B for ; Tue, 23 Jul 2019 04:54:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B5EE41BECB; Tue, 23 Jul 2019 04:54:47 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id A40A01BEB7 for ; Tue, 23 Jul 2019 04:54:45 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Jul 2019 19:54:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,297,1559545200"; d="scan'208";a="188739715" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga001.fm.intel.com with ESMTP; 22 Jul 2019 19:54:44 -0700 Received: from fmsmsx162.amr.corp.intel.com (10.18.125.71) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 22 Jul 2019 19:54:44 -0700 Received: from shsmsx108.ccr.corp.intel.com (10.239.4.97) by fmsmsx162.amr.corp.intel.com (10.18.125.71) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 22 Jul 2019 19:54:43 -0700 Received: from shsmsx105.ccr.corp.intel.com ([169.254.11.232]) by SHSMSX108.ccr.corp.intel.com ([169.254.8.174]) with mapi id 14.03.0439.000; Tue, 23 Jul 2019 10:54:42 +0800 From: "Zhang, YanX A" To: "dts@dpdk.org" Thread-Topic: [dts][PATCH V1] tests/TestSuite_vf_vlan:set filter on before add vlan Thread-Index: AQHVQQHWPAYEpyosa02zwGXVKvlwcqbXgebg Date: Tue, 23 Jul 2019 02:54:41 +0000 Message-ID: <2C49E4B25FAD1D419F7564D633EF72E1F3B65E@SHSMSX105.ccr.corp.intel.com> References: <1563850698-39687-1-git-send-email-yanx.a.zhang@intel.com> In-Reply-To: <1563850698-39687-1-git-send-email-yanx.a.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: 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_vlan:set filter on before add vlan 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: Zhang, YanX A -----Original Message----- From: Zhang, YanX A=20 Sent: Tuesday, July 23, 2019 10:58 AM To: dts@dpdk.org Cc: Zhang, YanX A Subject: [dts][PATCH V1] tests/TestSuite_vf_vlan:set filter on before add v= lan set filter on before add vlan. Otherwise the following error will be reported: ---Port 0: vlan-filtering disabled ---rte_eth_dev_vlan_filter(port_pi=3D0, vlan_id=3D4095, on=3D1) failed = diag=3D-38 Signed-off-by: zhang,yan --- tests/TestSuite_vf_vlan.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py index = d0175b3..f50a7e5 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -289,6 +289,7 @@ class TestVfVlan(TestCase): # if you want insert tx_vlan, # please enable rx_vlan at the same time if self.kdriver =3D=3D "i40e": + self.vm0_testpmd.execute_cmd('vlan set filter on 0') self.vm0_testpmd.execute_cmd('rx_vlan add %d 0' % tx_vlan) self.vm0_testpmd.execute_cmd('stop') self.vm0_testpmd.execute_cmd('port stop all') -- 2.17.2