Re: [ovs-dev] [External] Re: [PATCH v1] ofproto-dpif-xlate: ovs-tcpdump cannot capture incomming vxlan packets

2023-06-28 Thread . via dev
On Mon, Jun 26, 2023 at 10:57 PM Simon Horman wrote: > > On Fri, Oct 09, 2020 at 08:15:03PM +0800, hepeng.0320 wrote: > > when running ovs-tcpdump -i ethX and the port is used as the incomming port > > for a vxlan port. > > > > The callstack for the upcall: > > > > mirror_ingress_packet > >

Re: [ovs-dev] [来自外部的邮件]Re: [External] Re:[ovs-dev,ovs-dev,v2,4/4] dpif-netdev: fix inconsistent processing between ukey and megaflow

2022-09-23 Thread .
for this > inconsistence, and would like to hear your “new cause”. > > > > Anyway I believe your below patch should fix this issue. > > [ovs-dev,ovs-dev,v2,1/4] ofproto-dpif-upcall: fix push_dp_ops > > > > Br, > > Zhike > > > > *From: *".贺

Re: [ovs-dev] [External] Re:[ovs-dev, ovs-dev, v2, 4/4] dpif-netdev: fix inconsistent processing between ukey and megaflow

2022-09-23 Thread .
cause for that, but due to this complex race between PMD and revalidator, I wish this time I am right. But before that, why are you interested in this patch? Have you found the same issue in your environment? On Thu, Sep 22, 2022 at 6:54 PM .贺鹏 wrote: > Hi, zhike, > > It's difficul

Re: [ovs-dev] [External] Re:[ovs-dev, ovs-dev, v2, 4/4] dpif-netdev: fix inconsistent processing between ukey and megaflow

2022-09-22 Thread .
Hi, zhike, It's difficult to give a very clear sequences about how this inconsistency happens, but I can give you more details. This is observed in our production environment. The correct megaflow should encap packets with vxlan header and send out, but the action is drop. This is usually

Re: [ovs-dev] [External] Re: [PATCH 2/5] ipf: add ipf context

2022-02-14 Thread .
On Tue, Feb 15, 2022 at 2:10 AM Ilya Maximets wrote: > > On 1/28/22 17:14, Aaron Conole wrote: > > From: Peng He > > > > ipf_postprocess will emit packets into the datapath pipeline ignoring > > the conntrack context, this might casuse weird issues when a packet > > batch has less space to hold

Re: [ovs-dev] [ovs-dev v3] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread
Ah, found a bug, will submit a v4. Peng He 于2022年1月18日周二 21:08写道: > From hepeng: > > https://patchwork.ozlabs.org/project/openvswitch/patch/20200717015041.82746-1-hepeng.0...@bytedance.com/#2487473 > > also from guohongzhi : > >

Re: [ovs-dev] [PATCH] ofproto: fix use-after-free for "ofproto".

2022-01-17 Thread
Hi, yunjian and Ilya, this patch reminds me of the discussion we have in March last year, and during the discussion, you have spotted this thread-safety issue of uuid map. Unfortunately, in that email, you did not reply to the mailist, so I cannot give a link to the email. I attach it as a

Re: [ovs-dev] [PATCH] netdev-dpdk: prepare for tso offload for tx copy packet

2022-01-17 Thread
Hi, Harold, I am curious how this bug is found as I have an unsolved bug that I believe it's related to some memory issues and may be related to NIC's problem. Harold Huang 于2022年1月13日周四 16:24写道: > From: Harold Huang > > When one flow is output to multiple egress ports, OVS copy the packets

Re: [ovs-dev] [ovs-dev v8 1/2] ipf: add ipf context

2022-01-17 Thread
Hi, this patch can pass all the system-userspace testsuite if one of my another patch gets merged. So maybe review this patch "[ovs-dev] ofproto-dpif: fix packet_execute_prepare" first. Peng He 于2022年1月18日周二 11:28写道: > From: Peng He > > ipf_postprocess will emit packets into the datapath

Re: [ovs-dev] [ovs-dev v7 2/3] ipf: micro-optimize ipf_ctx_eq

2022-01-12 Thread
Hi, Thanks for the reviewing. Aaron Conole 于2022年1月12日周三 05:37写道: > Peng He writes: > > > by using ipf_list's key instead of first frags' metadata can reduce > > quite a lot of cache access as by the time calling ipf_ctx_eq, ipf_list > > is cache-hot. > > > > Signed-off-by: Peng He > > --- >

Re: [ovs-dev] [ovs-dev v6 3/3] ipf: ipf_preprocess_conntrack should also consider ipf_ctx

2022-01-09 Thread
Hi, after I applied this patch, all the failed tests now passed. diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index cba49a99e..a7df7db6f 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -4972,6 +4972,7 @@ packet_execute_prepare(struct ofproto *ofproto_,

[ovs-dev] Fwd: [ovs-dev v6 3/3] ipf: ipf_preprocess_conntrack should also consider ipf_ctx

2022-01-08 Thread
just forget to reply all. -- Forwarded message - 发件人: 贺鹏 Date: 2022年1月9日周日 10:59 Subject: Re: [ovs-dev v6 3/3] ipf: ipf_preprocess_conntrack should also consider ipf_ctx To: Mike Pattrick Hi, Mike, thank you for the review and testing. it seems that all these broken tests

Re: [ovs-dev] [ovs-dev v6 3/3] ipf: ipf_preprocess_conntrack should also consider ipf_ctx

2022-01-08 Thread
Hi, Mike, The bug in the last email is not correct. in packet_execute_prepare functions, it has changed dp_packet md's port into the odp port, but in the execute->flow, the value is still the ofp port. static void packet_execute_prepare(struct ofproto *ofproto_,

Re: [ovs-dev] [ovs-dev v5] ipf: add ipf context

2021-12-18 Thread
I have found another problem in the ipf code which is related to the ipf. will send a new version consists of two patches. Mike Pattrick 于2021年11月30日周二 05:08写道: > Looks good to me! > > Acked-by: Mike Pattrick > > > On Sat, 2021-11-27 at 03:39 +, Peng He wrote: > > From: Peng He > > > >

Re: [ovs-dev] [PATCH RFC 3/5] conntrack: Replaces nat_conn introducing key directionality.

2021-12-11 Thread
Hi, Paolo well done. the patch looks good to me. and I am going through your other patches. I wonder maybe finally we need a *conn_flags* to store all the informations containing NAT, cleaned flag, etc. Paolo Valerio 于2021年11月30日周二 02:06写道: > From: Peng He > > Currently, when doing NAT,

Re: [ovs-dev] [ovs-dev v4] ipf: add ipf context

2021-11-21 Thread
Ah, in the commits, I forget to delete the introduction of recirc_depth. will send a v5. 0-day Robot 于2021年11月20日周六 下午6:20写道: > Bleep bloop. Greetings Peng He, I am a robot and I have tried out your > patch. > Thanks for your contribution. > > I encountered some error that I wasn't expecting.

Re: [ovs-dev] [ovs-dev v3] ipf: add ipf context

2021-11-17 Thread
Hi, Michael, thanks for the suggestion! the patch looks good to me, did you do the test in the patch? Mike Pattrick 于2021年11月18日周四 上午6:33写道: > Hello Peng, > > Great patch! How do you feel about a patch like this to get away from > recursion? > > diff --git a/lib/dpif-netdev.c

[ovs-dev] tunnel info mask can unmasked when megaflow is with a recirc_id

2021-08-15 Thread
Hi, One recirc_id can be viewed as a frozen state in the "xlate" process and this frozen state stores tunnel info in it. So this recirc_id can also be viewed as a packet tag, with this tag it means the packet has all the tunnel metadata. So I was wondering if the "xlate" process sees a packets

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-07-26 Thread
Sure, will send a v2. Thanks for the review. Ilya Maximets 于2021年7月26日周一 上午7:22写道: > > Re-adding the list and people from CC. > > On 6/27/21 8:16 AM, 贺鹏 wrote: > > Hi, Ilya, > > > > sorry for replying so late, being really busy this month. > > Busy time

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-07-24 Thread
Hi, friendly ping for this patch. Ilya Maximets 于2021年5月22日周六 上午3:50写道: > > On 5/21/21 5:00 AM, 贺鹏 wrote: > > Hi, Ilya > > > > > > > > Ilya Maximets 于2021年5月19日周三 下午8:50写道: > >> > >> On 2/27/21 10:34 AM, Peng He wrote: > >>>

Re: [ovs-dev] "Why perthread->mutex is needed?"

2021-07-09 Thread
Great, thanks! Ben Pfaff 于2021年6月29日周二 下午11:36写道: > > On Tue, Jun 29, 2021 at 09:49:39PM +0800, 贺鹏 wrote: > > I am investigating the OVS RCU code, and feel confused about the > > perthread->mutex, what's the usage of this mutex? it seems in the code > > ther

[ovs-dev] Why save a flow structure in dp_netdev_key?

2021-07-09 Thread
Hi, I am investigating the code of revalidator and the DPDK netdev datapath for OVS. I have some questions: 1) why save a whole flow in the dp_nedev_key? Currently, the size of flow is around 670 bytes, and the full size of dp_netdev_key is around 1500 (meaning that this flow takes 50% of the

[ovs-dev] Fwd: "Why perthread->mutex is needed?"

2021-06-29 Thread
-- 转发的邮件 -- 发件人: *贺鹏* 日期: 2021年6月29日星期二 主题: "Why perthread->mutex is needed?" 收件人: Sriharsha Basavapatna via dev , Ben Pfaff < b...@ovn.org> Hi,Ben, I am investigating the OVS RCU code, and feel confused about the perthread->mutex, what's the usage o

[ovs-dev] "Why perthread->mutex is needed?"

2021-06-29 Thread
Hi,Ben, I am investigating the OVS RCU code, and feel confused about the perthread->mutex, what's the usage of this mutex? it seems in the code there are only codes that inits and destroys the mutex, but there is no code that locks and unlocks it. Thanks. -- hepeng

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-05-20 Thread
Hi, Ilya Ilya Maximets 于2021年5月19日周三 下午8:50写道: > > On 2/27/21 10:34 AM, Peng He wrote: > > CT zone could be set from a field that is not included in frozen > > metadata. Consider the example rules which are typically seen in > > OpenStack security group rules: > > > >

Re: [ovs-dev] conntrack: code refactoring userspace ct.

2021-05-07 Thread
Hi, If you have time to rework it then it's great. You can put me as one of the authors using the bytedance email address (as an obligation of the company policy). Thanks. Gaëtan Rivet 于2021年5月7日周五 下午5:26写道: > > On Sat, Mar 6, 2021, at 03:44, 贺鹏 wrote: > > Gaëtan Rivet 于2021年3月2日

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-04-26 Thread
Hi, it has been two months now, can anyone review this patch? 贺鹏 于2021年3月19日周五 下午4:42写道: > > Hi, > > Ping for this patch. > > 贺鹏 于2021年3月6日周六 上午10:37写道: > > > > Mark Gray 于2021年3月5日周五 下午7:54写道: > > > > > > On 27/02/2021 09:34, Peng He

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-03-19 Thread
Hi, Ping for this patch. 贺鹏 于2021年3月6日周六 上午10:37写道: > > Mark Gray 于2021年3月5日周五 下午7:54写道: > > > > On 27/02/2021 09:34, Peng He wrote: > > > CT zone could be set from a field that is not included in frozen > > > metadata. Consider the example rules which a

Re: [ovs-dev] [PATCH] [ovs-dev v2]ofproto:fix use-after-free of ofproto

2021-03-09 Thread
Is this a version that mixes using refcount and RCU? do we have reached an agreement? BTW, please use my company email address: hepeng.0...@bytedance.com thanks. Hongzhi Guo 于2021年3月8日周一 上午11:34写道: > > ASAN report use-after-free of ofproto when destroy ofproto_rule. > The rule uses both RCU

Re: [ovs-dev] [PATCH 4/4] conntrack: compact the size of conn structure.

2021-03-05 Thread
Gaëtan Rivet 于2021年3月3日周三 上午4:01写道: > > On Sun, Nov 29, 2020, at 03:32, hepeng.0320 wrote: > > From: hepeng > > > > This patch tries to use ovs_spin_lock as an alternative to reduce the > > size of each conn. The ovs_mutex_lock consumes 48 bytes while the > > ovs_spin_lock only uses 16 bytes. >

Re: [ovs-dev] [PATCH 3/4] conntrack: refactoring alg handle code path

2021-03-05 Thread
Gaëtan Rivet 于2021年3月3日周三 上午3:49写道: > > On Sun, Nov 29, 2020, at 03:32, hepeng.0320 wrote: > > From: hepeng > > > > Just like the previous patch, split the handle_ftp_ctl into > > handle_ftp_interest and handle_ftp_other, since we can infer > > which one to call from the called positions. > > >

Re: [ovs-dev] [PATCH 1/4] conntrack: remove nat_conn

2021-03-05 Thread
Gaëtan Rivet 于2021年3月3日周三 上午1:46写道: > > On Sat, Feb 27, 2021, at 09:49, 贺鹏 wrote: > > Hi, > > > > Thanks for the detailed reviews. > > These patches are like RFC to see if the work is interesting enough. > > > > Aaron Conole 于2021年2月25日周四 上

Re: [ovs-dev] conntrack: code refactoring userspace ct.

2021-03-05 Thread
Hi, I've read all your suggestions and appreciate that. Just have been through a very busy week, and probably will have a very busy month, so the work and reply might be slow. Will do a rebase in the next version. I've seen some of your patches related to CT. do you have some plans for CT

Re: [ovs-dev] [PATCH v3] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-03-05 Thread
Mark Gray 于2021年3月5日周五 下午7:54写道: > > On 27/02/2021 09:34, Peng He wrote: > > CT zone could be set from a field that is not included in frozen > > metadata. Consider the example rules which are typically seen in > > OpenStack security group rules: > > > >

Re: [ovs-dev] [External] Re: [ovs-dev v2] ofproto: add refcount to ofproto to fix crash at ofproto_destroy

2021-03-01 Thread .
On Tue, Mar 2, 2021 at 4:15 AM Ilya Maximets wrote: > > On 2/27/21 9:53 AM, 贺鹏 wrote: > > Hi, > > > > Thanks William and Ilya for a detailed revisiting of the origin of the > > problem. I learned a lot. > > > > I now understand that the mix usin

Re: [ovs-dev] [PATCH 1/4] conntrack: remove nat_conn

2021-02-27 Thread
Hi, Thanks for the detailed reviews. These patches are like RFC to see if the work is interesting enough. Aaron Conole 于2021年2月25日周四 上午1:37写道: > > "hepeng.0320" writes: > > > From: hepeng > > > > Currently, when doing NAT, the userspace conntrack will use an extra > > conn for the two

Re: [ovs-dev] [PATCH v2] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-02-27 Thread
Hi, Sent a new version of the patch. 贺鹏 于2021年2月20日周六 上午10:21写道: > > Hi, Mark, > > thanks for the review! > > Mark Gray 于2021年2月19日周五 下午9:07写道: > > > > On 18/02/2021 09:43, Peng He wrote: > > > > One small comment below. By the way, good catch ..

Re: [ovs-dev] [ovs-dev v2] ofproto: add refcount to ofproto to fix crash at ofproto_destroy

2021-02-27 Thread
Hi, Thanks William and Ilya for a detailed revisiting of the origin of the problem. I learned a lot. I now understand that the mix using of RCU and refcounts is not intended in the first place. But my point is that mix using RCU and refcounts now gives you more choices, and actually eases the

Re: [ovs-dev] [ovs-dev v2] ofproto: add refcount to ofproto to fix crash at ofproto_destroy

2021-02-24 Thread
Ilya Maximets 于2021年2月25日周四 上午12:01写道: > > On 2/24/21 3:29 PM, Ilya Maximets wrote: > > On 7/17/20 3:50 AM, hepeng.0320 wrote: > >> From: Peng He > >> > >> The call stack of rule_destroy_cb: > >> > >> remove_rules_postponed (one grace period) > >> -> remove_rule_rcu > >> ->

Re: [ovs-dev] [PATCHv2] connmgr: Check nullptr inside ofmonitor_report()

2021-02-22 Thread
Hi, Ilya and William, Ilya Maximets 于2021年2月22日周一 下午8:12写道: > > On 2/21/21 5:11 PM, William Tu wrote: > > On Fri, Feb 19, 2021 at 6:29 PM 贺鹏 wrote: > >> > >> Hi, Ilya > >> > >> Ilya Maximets 于2021年2月19日周五 下午7:19写道: > >>> > >&g

Re: [ovs-dev] [PATCHv2] connmgr: Check nullptr inside ofmonitor_report()

2021-02-19 Thread
Hi, Ilya Ilya Maximets 于2021年2月19日周五 下午7:19写道: > > On 2/19/21 3:12 AM, 贺鹏 wrote: > > Hi, > > > > Looks like this bug is caused by violating the fact that if a rule is > > referenced, the related ofproto should not be destroyed. > > > > If so, I have a p

Re: [ovs-dev] [PATCH v2] ofproto-dpif-xlate: fix zone set from non-frozen-metadata fields

2021-02-19 Thread
Hi, Mark, thanks for the review! Mark Gray 于2021年2月19日周五 下午9:07写道: > > On 18/02/2021 09:43, Peng He wrote: > > One small comment below. By the way, good catch .. i found it difficult > enough to review it, let alone find it! Thanks. This is found by exploring our controller's bug, which

Re: [ovs-dev] [PATCHv2] connmgr: Check nullptr inside ofmonitor_report()

2021-02-18 Thread
Hi, Looks like this bug is caused by violating the fact that if a rule is referenced, the related ofproto should not be destroyed. If so, I have a patch that also fixes the problem, not sure if this helps.

Re: [ovs-dev] [PATCH v1] ofproto-dpif-xlate: fix zone set from non frozen metadata field

2021-02-18 Thread
Hi, I've already sent a v2 patch. Mark Gray 于2021年2月17日周三 下午6:44写道: > > On 17/02/2021 10:40, 贺鹏 wrote: > > Hi, > > > > Thanks for the review. > > > > Mark Gray 于2021年2月17日周三 下午6:13写道: > >> > >> I'm not too familiar with this code but I have

Re: [ovs-dev] [PATCH v1] ofproto-dpif-xlate: fix zone set from non frozen metadata field

2021-02-17 Thread
Hi, Thanks for the review. Mark Gray 于2021年2月17日周三 下午6:13写道: > > I'm not too familiar with this code but I have some comments. > > On 15/02/2021 09:50, Peng He wrote: > > CT zone could be set from a field that is not included in frozen > > metedata. Consider the belowing cases which is normally

[ovs-dev] 回复:[ovs-dev v1] ipf: avoid accessing to a freed rp.

2020-11-17 Thread
ping 于2020年10月14日星期三 11:15 写道: if there are multiple pkts in the batch, the loop will access a freed rp, which cause ovs crash. --- lib/ipf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ipf.c b/lib/ipf.c index 446e89d13..c20bcc0b3 100644 --- a/lib/ipf.c +++

Re: [ovs-dev] [PATCH v1] ofproto-dpif-upcall: fix push_dp_ops

2020-10-09 Thread
sorry, please ignore this patch. hepeng.0320 于2020年10月9日周五 下午8:36写道: > > From: Peng He > > if for some reason, the dpif ops in push_dp_ops failed with op->dop.type > not equal to DPIF_OP_FLOW_DEL, the generated ukey is installed however > the corresponding datapath flow is not. The consequent

Re: [ovs-dev] Re: Re: Re: [PATCH v4 0/3] Add support for TSO with DPDK

2020-06-02 Thread
yes,check dpdk gso lib…… 在 2020年3月10日星期二,txfh2007 via dev 写道: > Hi Flavio and all: > > Is there a way to support software TSO for DPDK tunnel network ? I > have tried userspace TSO function, and running on tunnel network, I have > got the following error: > "Tunneling packets with HW

Re: [ovs-dev] [PATCH] ofproto-dpif-xlate: ovs-tcpdump cannot capture incomming vxlan packets

2020-05-22 Thread
ignore this patch, forget to sign-off the patch. hepeng.0320 于2020年5月22日周五 下午5:02写道: > > when running ovs-tcpdump -i ethX and the port is used as the incomming port > for a vxlan port. > > The callstack for the upcall: > > mirror_ingress_packet > mirror_packet > output_normal >

Re: [ovs-dev] [PATCH v2] ofproto-dpif-xlate: do not unwildcard source address if not needed

2020-03-26 Thread
w: recirc_id=0,eth,tun_id=0x1c8,tun_src=1.1.2.92,tun_dst=1.1.2.88,tun_tos=0,tun_flags=-df-csum-key,in_port=3,dl_type=0x +Datapath actions: drop +]) + +OVS_VSWITCHD_STOP +AT_CLEANUP -- 2.20.1 William Tu 于2020年3月26日周四 下午11:05写道: > > On Sun, Mar 22, 2020 at 10:42:16AM +0800, 贺鹏 wrote: > &

[ovs-dev] [PATCH v2] ofproto-dpif-xlate: do not unwildcard source address if not needed

2020-03-21 Thread
if the tunnel is specified as "remote_ip=flow", we can try to generate a megaflow which ignores all source address, such as source mac, source IP address in the outter header of the packet. This can reduce the number of megaflows and avoid expensive upcall and improve the performance.

[ovs-dev] [PATCH] ofproto-dpif-xlate: do not unwildcard source address if not needed

2020-03-14 Thread
if the tunnel is specified as "ip_remote=flow", we can try to generate a megaflow which ignores all source address, such as source mac, source IP address in the outter header of the packet. This can reduce the number of megaflows and avoid expensive upcall and improve the performance.

[ovs-dev] [PATCH] ofproto-dpif-xlate: do not unwildcard source address if not needed]

2020-03-14 Thread
if the tunnel is specified as "ip_remote=flow", we can try to generate a megaflow which ignores all source address, such as source mac, source IP address in the outter header of the packet. This can reduce the number of megaflows and avoid expensive upcalls and improve the performance.

Re: [ovs-dev] [PATCH V6 05/18] netdev-dpdk: Introduce rte flow query function

2019-12-28 Thread
Hi, there is a potential memory leak in ovs-dpdk hw offload, when remove a dpdk port in datapath, the dpif will call dpif_port_del and will eventually remove the netdev from the map *port_to_netdev* (in netdev-offload). Meanwhile, a resulted datapath reconfiguration will flush all the marked

[ovs-dev] [PATCH RFC] potential memory leak in ovs-dpdk hw offload

2019-12-25 Thread
Hi, I found a potential memory leak in ovs-dpdk hw offload, when remove a dpdk port in datapath, the dpif will call dpif_port_del and will eventually remove the netdev from the map *port_to_netdev* (in netdev-offload). Meanwhile, a resulted datapath reconfiguration will flush all the marked flows

[ovs-dev] [RFC] dpif-netdev:Remove holding the dp_netdev_mutex lock in dpif_netdev_wait

2019-12-25 Thread
Hi, I think the holding of dp_netdev_mutex lock can be removed in the dpif_netdev_wait, as in dpif_netdev_run, the code does not hold the dp_netdev_mutex lock, just the dp->port_mutex lock. So I am curious why the code here holds the dp_netdev_mutex lock. If any one knows it, I will appreciate

Re: [ovs-dev] [PATCH V3 08/19] netdev-offload-dpdk: Protect UFID map by mutex

2019-12-09 Thread
Got it. You're correct. Eli Britstein 于2019年12月9日周一 下午3:21写道: > > > On 12/9/2019 9:15 AM, 贺鹏 wrote: > > Hi, > > > > > > cmap support multiple readers and one writer. > > since all write operations are performed in the offload thread, > > why

Re: [ovs-dev] [PATCH V3 08/19] netdev-offload-dpdk: Protect UFID map by mutex

2019-12-08 Thread
Hi, cmap support multiple readers and one writer. since all write operations are performed in the offload thread, why need a mutex here? Maybe I miss some patches. Eli Britstein 于2019年12月8日周日 下午9:23写道: > > Flow deletion and dumping for statistics collection are called from > different