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 76B56A0563; Fri, 28 Feb 2020 02:08:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 33B5D1F1C; Fri, 28 Feb 2020 02:08:53 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id E22331C01 for ; Fri, 28 Feb 2020 02:08:50 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Feb 2020 17:08:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,493,1574150400"; d="scan'208";a="272446746" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga002.fm.intel.com with ESMTP; 27 Feb 2020 17:08:49 -0800 Received: from fmsmsx161.amr.corp.intel.com (10.18.125.9) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 27 Feb 2020 17:08:47 -0800 Received: from shsmsx105.ccr.corp.intel.com (10.239.4.158) by FMSMSX161.amr.corp.intel.com (10.18.125.9) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 27 Feb 2020 17:08:47 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.43]) by SHSMSX105.ccr.corp.intel.com ([169.254.11.144]) with mapi id 14.03.0439.000; Fri, 28 Feb 2020 09:08:45 +0800 From: "Tu, Lijuan" To: "Min, JiaqiX" , "dts@dpdk.org" CC: "Min, JiaqiX" Thread-Topic: [dts] [PATCH v1] test_plans/vf_daemon: add vf jumbo frame test for ixgbe Thread-Index: AQHV4lmVrdR9Tf1st0S5/JtPxLqBGagv4oLg Date: Fri, 28 Feb 2020 01:08:44 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBE39BF@SHSMSX101.ccr.corp.intel.com> References: <20200213103058.21640-1-jiaqix.min@intel.com> In-Reply-To: <20200213103058.21640-1-jiaqix.min@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] test_plans/vf_daemon: add vf jumbo frame test for ixgbe 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 Jiaqi Min > Sent: Thursday, February 13, 2020 6:31 PM > To: dts@dpdk.org > Cc: Min, JiaqiX > Subject: [dts] [PATCH v1] test_plans/vf_daemon: add vf jumbo frame test f= or > ixgbe >=20 > add ixgbe vf jumbo frame test case >=20 > Signed-off-by: Jiaqi Min > --- > test_plans/vf_daemon_test_plan.rst | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) >=20 > diff --git a/test_plans/vf_daemon_test_plan.rst > b/test_plans/vf_daemon_test_plan.rst > index 882e811..9a790c1 100644 > --- a/test_plans/vf_daemon_test_plan.rst > +++ b/test_plans/vf_daemon_test_plan.rst > @@ -474,3 +474,28 @@ Test Case 14: Set Vlan filter for VF from PF > VF0 can receive packet >=20 > 9. Send packet without vlan id to random MAC, check VF0 can receive pack= et > + > +Test Case 15: Ixgbe vf jumbo frame test > +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > +1. Default mtu size is 1500, send one packet with length bigger than def= ault > + mtu size to VF0, such as 2000 from tester, check VF0 can't receive > +packet > + > +2. Set VF0 mtu size as 3000, but need to stop then restart port to activ= e mtu:: > + > + testpmd> port stop all > + testpmd> port config mtu 0 3000 > + testpmd> port start all > + testpmd> start > + > +3. Send one packet with length 2000 from tester to VF0, check VF0 can > +receive packet > + > +4. Send one packet with length bigger than configured mtu size to VF0,su= ch > as 4000 > + from tester, check VF0 can't receive packet > + > +5. Quit VF0 testpmd, restart VF0 testpmd, send one packet with length 20= 00 > from > + tester to VF0, check VF0 can receive packet > + > +6. send one packet with length bigger than configured mtu size to VF0, s= uch > as > + 5000 from tester, check VF0 can't receive packet > + > +notes: only x550 and x540 support jumbo frames. > -- > 2.17.1