[V1,11/12] test_plans/vhost_virtio_user_interrupt: DPDK code prefix DEV change to RTE_ETH

Message ID 20211108162854.96466-12-linglix.chen@intel.com (mailing list archive)
State Changes Requested
Headers
Series DPDK code prefix DEV change to RTE_ETH |

Commit Message

Lingli Chen Nov. 8, 2021, 4:28 p.m. UTC
  According to dpdk commit 295968d17("ethdev: add namespace"), DPDK code prefix DEV change to RTE_ETH.

Signed-off-by: Lingli Chen <linglix.chen@intel.com>
---
 test_plans/vhost_virtio_user_interrupt_test_plan.rst | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
  

Patch

diff --git a/test_plans/vhost_virtio_user_interrupt_test_plan.rst b/test_plans/vhost_virtio_user_interrupt_test_plan.rst
index 2ac6a385..3cb2cf22 100644
--- a/test_plans/vhost_virtio_user_interrupt_test_plan.rst
+++ b/test_plans/vhost_virtio_user_interrupt_test_plan.rst
@@ -50,11 +50,10 @@  Modify l3fwd-power example code and recompile::
 
          static struct rte_eth_conf port_conf = {
                 .rxmode = {
-        -               .mq_mode        = ETH_MQ_RX_RSS,
-        +               .mq_mode        = ETH_MQ_RX_NONE,
-                        .max_rx_pkt_len = RTE_ETHER_MAX_LEN,
+        -               .mq_mode        = RTE_ETH_MQ_RX_RSS,
+        +               .mq_mode        = RTE_ETH_MQ_RX_NONE,
                         .split_hdr_size = 0,
-        -               .offloads = DEV_RX_OFFLOAD_CHECKSUM,
+        -               .offloads = RTE_ETH_RX_OFFLOAD_CHECKSUM,
                 },
                 .rx_adv_conf = {
                         .rss_conf = {