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 794BCA0542; Thu, 13 Feb 2020 11:36:57 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 544904C99; Thu, 13 Feb 2020 11:36:57 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id CE9383256 for ; Thu, 13 Feb 2020 11:36:55 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Feb 2020 02:36:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,436,1574150400"; d="scan'208";a="347705848" Received: from intel.sh.intel.com ([10.239.255.136]) by fmsmga001.fm.intel.com with ESMTP; 13 Feb 2020 02:36:53 -0800 From: Jiaqi Min To: dts@dpdk.org Cc: Jiaqi Min Date: Thu, 13 Feb 2020 10:30:58 +0000 Message-Id: <20200213103058.21640-1-jiaqix.min@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [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" add ixgbe vf jumbo frame test case Signed-off-by: Jiaqi Min --- test_plans/vf_daemon_test_plan.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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 9. Send packet without vlan id to random MAC, check VF0 can receive packet + +Test Case 15: Ixgbe vf jumbo frame test +======================================= +1. Default mtu size is 1500, send one packet with length bigger than default + 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 active 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,such as 4000 + from tester, check VF0 can't receive packet + +5. Quit VF0 testpmd, restart VF0 testpmd, send one packet with length 2000 from + tester to VF0, check VF0 can receive packet + +6. send one packet with length bigger than configured mtu size to VF0, such as + 5000 from tester, check VF0 can't receive packet + +notes: only x550 and x540 support jumbo frames. -- 2.17.1