From patchwork Wed Sep 2 14:15:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 76290 X-Patchwork-Delegate: lijuan.tu@intel.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A1B64A04B5; Wed, 2 Sep 2020 08:18:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9890B1C07E; Wed, 2 Sep 2020 08:18:00 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 08E3CE07 for ; Wed, 2 Sep 2020 08:17:58 +0200 (CEST) IronPort-SDR: R0syQVB0K7LkJKFyd7M0QJ6S8c2QQzEWRQ7WmccvkbsYEaGx4QsXukIjLSbmhJd7guVFsaVYG+ 8aqELwKsngIg== X-IronPort-AV: E=McAfee;i="6000,8403,9731"; a="158323368" X-IronPort-AV: E=Sophos;i="5.76,381,1592895600"; d="scan'208";a="158323368" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Sep 2020 23:17:55 -0700 IronPort-SDR: 04F40jNgvfr5vLpQOrPzdjvbD6TWl7s2tqyqrXxx7ocSX/cHxWsCUxzwcStIyoRdk9AjiFtY2Y ijJUsWB0zByw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,381,1592895600"; d="scan'208";a="333992530" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by fmsmga002.fm.intel.com with ESMTP; 01 Sep 2020 23:17:50 -0700 From: lingwei To: dts@dpdk.org Cc: lingwei Date: Wed, 2 Sep 2020 14:15:00 +0000 Message-Id: <20200902141500.92740-7-weix.ling@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200902141500.92740-1-weix.ling@intel.com> References: <20200902141500.92740-1-weix.ling@intel.com> Subject: [dts] [dts 6/6] test_plans/vf_l3fwd_test_plan: update test plan to sync with testcase 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" Signed-off-by: lingwei --- test_plans/vf_l3fwd_test_plan.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test_plans/vf_l3fwd_test_plan.rst b/test_plans/vf_l3fwd_test_plan.rst index 8b51cef..ec0f1cb 100644 --- a/test_plans/vf_l3fwd_test_plan.rst +++ b/test_plans/vf_l3fwd_test_plan.rst @@ -82,6 +82,15 @@ Prerequisites | NIC-2,Port-1 --- TG,Port-2 | +------------------------------+ +* Case config: + For test vf_l3fwd perf, need to set "define RTE_TEST_RX_DESC_DEFAULT 2048" and "define RTE_TEST_TX_DESC_DEFAULT 20480" + in ./examples/l3fwd/l3fwd.h and re-build l3fwd. + Note: + Only FVL need to change code to support iavf, when dpdk use iavf as default vf driver, no need to change code. + If test iavf on FVL, need to change "{ RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF) }" to + "a { RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_VF) }" in ./drivers/net/iavf/iavf_ethdev.c, + and set "I40E_DEV_ID_VF 0x164C" in ./drivers/net/i40e/base/i40e_devids.h and re-build DPDK. + Setup overview ==============