[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
packets that arrive from other chassis resubmit to table 38 Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b

[ovs-dev] [PATCH ovn] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b/ovn-architecture.7.xml @@ -1318,7 +1318,7 @@ output

[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b/ovn-architecture.7.xml @@ -1318,7 +1318,7 @@ output

[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b/ovn-architecture.7.xml @@ -1318,7 +1318,7 @@ output

[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b/ovn-architecture.7.xml @@ -1318,7 +1318,7 @@ output

[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b/ovn-architecture.7.xml @@ -1318,7 +1318,7 @@ output

[ovs-dev] [PATCH] documentation: packets that arrive from other chassis resubmit to table 38

2023-05-05 Thread Wei Li
packets that arrive from other chassis resubmit to table 38 Signed-off-by: Wei Li --- ovn-architecture.7.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn-architecture.7.xml b/ovn-architecture.7.xml index cb1064f71..86c6258e0 100644 --- a/ovn-architecture.7.xml +++ b

[ovs-dev] [PATCH] ovn: fix tunnel id overflow

2018-04-04 Thread Wei Li
Need to check tnlid dosen't exceed max and wrap it when it dose. Signed-off-by: Wei Li <li...@anbutu.com> --- ovn/northd/ovn-northd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c index 396381049..f286322b1 100644 ---

Re: [ovs-dev] [PATCH V2] ovn-controller: Reduce the number of flows by use conjunction action

2018-02-05 Thread Wei Li
在 2018/2/6 0:41, Numan Siddique 写道: On Mon, Feb 5, 2018 at 3:21 PM, Numan Siddique <nusid...@redhat.com <mailto:nusid...@redhat.com>> wrote: On Feb 5, 2018 12:32 PM, "Wei Li" <l...@dtdream.com <mailto:l...@dtdream.com>> wrote: your pa

Re: [ovs-dev] [PATCH V2] ovn-controller: Reduce the number of flows by use conjunction action

2018-02-04 Thread Wei Li
your patch is better, pls ignore my patch, it has some bugs. and I have a question, have you considered that situasion: and(or(and(or))), it have 'or' in 2 level. I do not know how to deal with the conjunction of 'or' in level 2. 在 2018/2/3 18:12, Numan Siddique 写道: On Sat, Feb 3, 2018 at

Re: [ovs-dev] conjunctive match in ovn

2017-10-12 Thread Wei Li
njunction like match tcp.dst conjunction(, 1/2) match ipv4.src conjunction(, 2/2) match conj_id= actices=xxxx will create less flows 在 2017/10/12 23:47, Ben Pfaff 写道: On Thu, Oct 12, 2017 at 05:35:13PM +0800, Wei Li wrote: Hello everyone I have some confused about "Crossproductin

[ovs-dev] conjunctive match in ovn

2017-10-12 Thread Wei Li
Hello everyone I have some confused about "Crossproducting" in ovn-sb I create acl in ovn-sb like this match   : "tcp.src == {1, 2} && tcp.dst == {1, 2} && ip4.src == {1.1.1.1/32, 2.2.2.2/32} && ip4.dst == {1.1.1.1/32, 2.2.2.2/32}" ovs-ofctl dump-flows  like this

Re: [ovs-dev] [PATCH] dpif: execute ct together with recirc when slow path

2017-06-14 Thread Wei Li
Great idea, this can process actions like "ct(...nat),recirc(...),output(...)" correctly, output packet will be a NATed packet Before implementing your idea, how deal with my patch? 1: drop it 2:accept it for fixing limited scenario (i will do checkpatch) What's your suggestion? 在

Re: [ovs-dev] [PATCH] dpif: execute ct together with recirc when slow path

2017-06-14 Thread Wei Li
that is for this problem [ovs-dev] [ovs-discuss] ovn: unsnat handling error for Distributed Gateway https://mail.openvswitch.org/pipermail/ovs-dev/2017-April/330536.html Previous patch [PATCH] ovn-northd: Add logical flows to reply ICMP echo requests for all the other router ports connected to

Re: [ovs-dev] 回复: [PATCH] ovn-northd: Add logical flows to reply ICMP echo requests for all the other router ports connected to one switch

2017-06-12 Thread Wei Li
I read the code and find this datapath/conntrack.c : 982 if (info->nat && !(key->ct_state & OVS_CS_F_NAT_MASK) && (nf_ct_is_confirmed(ct) || info->commit) && ovs_ct_nat(net, key, info, skb, ct, ctinfo) != NF_ACCEPT) { return -EINVAL; } I