[ovs-dev] Execute the DPIF_OP_FLOW_PUT action after the slowpath packet is sent

2021-08-10 Thread liyang_12921
ruct udpif_key *ukey = upcall->ukey; + +if (ukey_install(udpif, ukey)) { +upcall->ukey_persists = true; +put_op_init(&ops[n_ops++], ukey, DPIF_FP_CREATE); +} + } } /* Execute batch. */ | | liyang

[ovs-dev] [PATCH 1/1] netdev-dpdk: Fix comparing virtio driver name

2021-08-30 Thread liyang_12921
cmp(info.driver_name, virtio_driver_name, sizeof(virtio_driver_name))) { conf.rxmode.mq_mode = ETH_MQ_RX_NONE; } else { conf.rxmode.mq_mode = ETH_MQ_RX_RSS; | | liyang_12921 | | | ___ dev mailing list d...@openvswitch.org https://mail.ope

Re: [ovs-dev] [PATCH 1/1] netdev-dpdk: Fix comparing virtio driver name

2021-08-30 Thread liyang_12921
From a3a7693c02d383ce9cab3c1a54ade6274bbb6dec Mon Sep 17 00:00:00 2001 From: liyang_12921 Date: Mon, 30 Aug 2021 17:41:56 +0800 Subject: [PATCH] netdev-dpdk: Fix comparing virtio driver name --- lib/netdev-dpdk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/netdev

Re: [ovs-dev] [PATCH 1/1] netdev-dpdk: Fix comparing virtio driver name

2021-08-30 Thread liyang_12921
Thanks. | | liyang_12921 | | | 签名由网易邮箱大师定制 On 8/30/2021 18:16,David Marchand wrote: On Mon, Aug 30, 2021 at 11:23 AM liyang_12921 wrote: Replace strcmp() with strncmp(), because the strcmp() function requires that the two strings are exactly the same. What was exactly the issue, is this because you were try