From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CB8F6A0A0A; Wed, 24 Mar 2021 04:00:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BF03740687; Wed, 24 Mar 2021 04:00:38 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 101FA40151 for ; Wed, 24 Mar 2021 04:00:36 +0100 (CET) IronPort-SDR: JS9+yIWJAEcrmYazv0ggXjmdafy48i6X4hA1QDhK9WlP0XG9GTSAODFIP67InMKohmqgWwgzTK 17B8fbxq0d3A== X-IronPort-AV: E=McAfee;i="6000,8403,9932"; a="210708946" X-IronPort-AV: E=Sophos;i="5.81,272,1610438400"; d="scan'208";a="210708946" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2021 20:00:36 -0700 IronPort-SDR: TCSGVZWwRhkoUI5NvNwu2uNg1WczOOUEK75IjWmZqKEgxOSnmZE+5ZvEXk5bAnS24KyixXn31u 7w/LSGRDNF4Q== X-IronPort-AV: E=Sophos;i="5.81,272,1610438400"; d="scan'208";a="607958938" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2021 20:00:35 -0700 From: xiewei To: dts@dpdk.org Cc: xiewei Date: Wed, 24 Mar 2021 19:24:43 +0800 Message-Id: <20210324112443.29319-3-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210324112443.29319-1-weix.xie@intel.com> References: <20210324112443.29319-1-weix.xie@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH 2/2] test_plans/rxtx_offload_test_plan: adapt to CVL NIC X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 CVL NIC supported. Signed-off-by: xiewei --- test_plans/rxtx_offload_test_plan.rst | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/test_plans/rxtx_offload_test_plan.rst b/test_plans/rxtx_offload_test_plan.rst index 246e1e16..8b034d67 100644 --- a/test_plans/rxtx_offload_test_plan.rst +++ b/test_plans/rxtx_offload_test_plan.rst @@ -146,6 +146,21 @@ Test case: Rx offload per-port setting The port can be started normally, but the setting doesn't take effect. Pkt1 still can be distributed to queue 1. +Note: + +But for ice NIC, disable jumboframe per-queue will change the RSS key. +So if set jumboframe per-queue, the hash value of received packet will be changed, and we can’t judge the test result by queue number. +So we disable jumboframe per-queue in all the queues, and if the packet still can be received in any queue, the setting doesn't take effect:: + + testpmd> port stop 0 + testpmd> port 0 rxq 0 rx_offload jumbo_frame off + testpmd> port 0 rxq 1 rx_offload jumbo_frame off + testpmd> port 0 rxq 2 rx_offload jumbo_frame off + testpmd> port 0 rxq 3 rx_offload jumbo_frame off + testpmd> port start 0 + + Pkt1 can be distributed to queues by RSS. + 4. Succeed to disable jumboframe per_port:: testpmd> port stop 0 @@ -643,6 +658,20 @@ Test case: FVL Tx offload per-queue setting The port fwd can be started normally. +Note: + +But for ice NIC, it failed to enable mbuf_fast_free per_queue:: + + testpmd> port stop 0 + testpmd> port 0 txq 0 tx_offload mbuf_fast_free on + testpmd> port 0 txq 1 tx_offload mbuf_fast_free on + testpmd> port 0 txq 2 tx_offload mbuf_fast_free on + testpmd> port 0 txq 3 tx_offload mbuf_fast_free on + testpmd> port start 0 + Configuring Port 0 (socket 0) + Ethdev port_id=0 tx_queue_id=0, new added offloads 0x10000 must be within per-queue offload capabilities 0x0 in rte_eth_tx_queue_setup() + Fail to configure port 0 tx queues + 4. Disable mbuf_fast_free per_queue:: testpmd> port stop 0 -- 2.17.1