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 6C6BCA0C4C; Mon, 8 Nov 2021 09:27:20 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6715A41120; Mon, 8 Nov 2021 09:27:20 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 4022840DF7 for ; Mon, 8 Nov 2021 09:27:18 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10161"; a="295627996" X-IronPort-AV: E=Sophos;i="5.87,218,1631602800"; d="scan'208";a="295627996" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Nov 2021 00:27:17 -0800 X-IronPort-AV: E=Sophos;i="5.87,218,1631602800"; d="scan'208";a="491129191" Received: from unknown (HELO dpdk.lan) ([10.240.183.77]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Nov 2021 00:27:16 -0800 From: Lingli Chen To: dts@dpdk.org Cc: Lingli Chen Date: Mon, 8 Nov 2021 16:28:49 +0000 Message-Id: <20211108162854.96466-8-linglix.chen@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211108162854.96466-1-linglix.chen@intel.com> References: <20211108162854.96466-1-linglix.chen@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1 07/12] test_plans/vhost_user_interrupt: DPDK code prefix DEV change to RTE_ETH 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" According to dpdk commit 295968d17("ethdev: add namespace"), DPDK code prefix DEV change to RTE_ETH. Signed-off-by: Lingli Chen --- test_plans/vhost_user_interrupt_test_plan.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/test_plans/vhost_user_interrupt_test_plan.rst b/test_plans/vhost_user_interrupt_test_plan.rst index f8d35297..a70d1602 100644 --- a/test_plans/vhost_user_interrupt_test_plan.rst +++ b/test_plans/vhost_user_interrupt_test_plan.rst @@ -41,6 +41,22 @@ Vhost-user interrupt need test with l3fwd-power sample, small packets send from check vhost-user cores can be wakeup,and vhost-user cores should be back to sleep after stop sending packets from virtio side. +Prerequisites +============= + +Modify l3fwd-power example code and recompile:: + + --- a/examples/l3fwd-power/main.c + +++ b/examples/l3fwd-power/main.c + @@ -251,7 +251,6 @@ static struct rte_eth_conf port_conf = { + .rxmode = { + .mq_mode = RTE_ETH_MQ_RX_RSS, + .split_hdr_size = 0, + - .offloads = RTE_ETH_RX_OFFLOAD_CHECKSUM, + }, + .rx_adv_conf = { + .rss_conf = { + Test flow ========= -- 2.33.1