From patchwork Mon Nov 8 16:28:47 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 103932 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2AFC0A0C4C; Mon, 8 Nov 2021 09:27:17 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1DF9A41122; Mon, 8 Nov 2021 09:27:17 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 409D040DF7 for ; Mon, 8 Nov 2021 09:27:15 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10161"; a="295627981" X-IronPort-AV: E=Sophos;i="5.87,218,1631602800"; d="scan'208";a="295627981" 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:14 -0800 X-IronPort-AV: E=Sophos;i="5.87,218,1631602800"; d="scan'208";a="491129131" 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:13 -0800 From: Lingli Chen To: dts@dpdk.org Cc: Lingli Chen Date: Mon, 8 Nov 2021 16:28:47 +0000 Message-Id: <20211108162854.96466-6-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 Subject: [dts] [PATCH V1 05/12] test_plans/vhost_event_idx_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_event_idx_interrupt_test_plan.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test_plans/vhost_event_idx_interrupt_test_plan.rst b/test_plans/vhost_event_idx_interrupt_test_plan.rst index 13ed7a9c..67888794 100644 --- a/test_plans/vhost_event_idx_interrupt_test_plan.rst +++ b/test_plans/vhost_event_idx_interrupt_test_plan.rst @@ -50,10 +50,9 @@ Modify l3fwd-power example code and recompile:: --- a/examples/l3fwd-power/main.c +++ b/examples/l3fwd-power/main.c @@ -248,7 +248,6 @@ static struct rte_eth_conf port_conf = { - .mq_mode = ETH_MQ_RX_RSS, - .max_rx_pkt_len = RTE_ETHER_MAX_LEN, + .mq_mode = RTE_ETH_MQ_RX_RSS, .split_hdr_size = 0, - - .offloads = DEV_RX_OFFLOAD_CHECKSUM, + - .offloads = RTE_ETH_RX_OFFLOAD_CHECKSUM, }, .rx_adv_conf = { .rss_conf = {