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