Re: [ovs-dev] [PATCH] ofp-actions: Correct execution of encap/decap actions in action set

2018-04-08 Thread Yang, Yi Y
Hi, Jan Sangfor guy tried this one, he still encountered assert issue after ovs ran for about 20 minutes, moreover it appeared periodically. I'm not sure if https://patchwork.ozlabs.org/patch/895405/ is helpful for this issue. Do you think what the root cause is? -Original Message- Fro

Re: [ovs-dev] [PATCH] ofproto-dpif: Init ukey->dump_seq to zero

2018-04-08 Thread Joe Stringer
On 6 April 2018 at 10:44, Ben Pfaff wrote: > [also CCing Joe on the chance that he wants to comment] > > On Fri, Apr 06, 2018 at 09:34:38AM +, Jan Scheurich wrote: >> > -Original Message- >> > From: Ben Pfaff [mailto:b...@ovn.org] >> > Sent: Wednesday, 04 April, 2018 22:28 >> > >> > Oh

[ovs-dev] FWD: SHIPPING DOCUMENTS AND B/L No.KNSO010160402215.

2018-04-08 Thread Info
Dear Sir, We have been advised by the Members that the cargo was carried by the vessel "HENG YU" V.1615W under B/L No.KNSO010160402215. Hereby send you the relevant bill of lading and shipping documents as the attached file. We will keep you informed of the development. Look forward to

[ovs-dev] [patch v6 00/10] Userspace datapath: Add fragmentation support.

2018-04-08 Thread Darrell Ball
Fragmentation support for userspace datapath conntrack is added; both v4 and v6 are supported. See the patches for additional details. v5->v6: Rebase Folded patch 4 and some test enablement into patch 3 and brought an earlier patch forward in sequence Enable fragmentati

[ovs-dev] [patch v6 01/10] dp-packet: Add const qualifiers for checksum apis.

2018-04-08 Thread Darrell Ball
Signed-off-by: Darrell Ball Acked-by: Justin Pettit --- lib/dp-packet.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/dp-packet.h b/lib/dp-packet.h index 21c8ca5..1f003db 100644 --- a/lib/dp-packet.h +++ b/lib/dp-packet.h @@ -637,7 +637,7 @@ dp_packet_mbuf_init(

[ovs-dev] [patch v6 02/10] flow: Enhance parse_ipv6_ext_hdrs.

2018-04-08 Thread Darrell Ball
Enhance the api parse_ipv6_ext_hdrs to return the fragmentation header to be used in later patches. Signed-off-by: Darrell Ball Acked-by: Justin Pettit --- lib/conntrack.c | 5 +++-- lib/flow.c | 23 ++- lib/flow.h | 3 ++- 3 files changed, 19 insertions(+), 12 d

[ovs-dev] [patch v6 03/10] tests: Add missed local stack checks.

2018-04-08 Thread Darrell Ball
Signed-off-by: Darrell Ball --- tests/system-traffic.at | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/system-traffic.at b/tests/system-traffic.at index 2afadec..33a89c8 100644 --- a/tests/system-traffic.at +++ b/tests/system-traffic.at @@ -2092,6 +2092,7 @@ AT_SETUP([conntrack - Fra

[ovs-dev] [patch v6 05/10] ipf: Add command to disable fragmentation handling.

2018-04-08 Thread Darrell Ball
Signed-off-by: Darrell Ball --- NEWS| 2 ++ lib/ct-dpif.c | 8 lib/ct-dpif.h | 1 + lib/dpctl.c | 41 + lib/dpctl.man | 11 +++ lib/dpif-netdev.c | 9 + lib/dpif-netlink.c | 1 + lib

[ovs-dev] [patch v6 06/10] ipf: Add set minimum fragment size command.

2018-04-08 Thread Darrell Ball
A new command "ovs-appctl dpctl/ipf-set-minfrag" is added for userspace datapath conntrack fragmentation support. Signed-off-by: Darrell Ball --- NEWS| 2 ++ lib/ct-dpif.c | 8 lib/ct-dpif.h | 1 + lib/dpctl.c | 40 +

[ovs-dev] [patch v6 04/10] Userspace datapath: Add fragmentation handling.

2018-04-08 Thread Darrell Ball
Fragmentation handling is added for supporting conntrack. Both v4 and v6 are supported. After discussion with several people, I decided to not store configuration state in the database to be more consistent with the kernel in future, similarity with other conntrack configuration which will not be

[ovs-dev] [patch v6 08/10] ipf: Add command to get fragmentation handling status.

2018-04-08 Thread Darrell Ball
A new command "ovs-appctl dpctl/ipf-get-status" is added for userspace datapath conntrack fragmentation support. The command shows the configuration status as well as fragment counters. Signed-off-by: Darrell Ball --- NEWS| 2 ++ lib/ct-dpif.c | 21 +++ lib/ct-

[ovs-dev] [patch v6 07/10] ipf: Add set maximum fragments supported command.

2018-04-08 Thread Darrell Ball
A new command "ovs-appctl dpctl/ipf-set-maxfrags" is added for userspace datapath conntrack fragmentation support. Signed-off-by: Darrell Ball --- NEWS| 2 ++ lib/ct-dpif.c | 8 lib/ct-dpif.h | 1 + lib/dpctl.c | 31 +++

[ovs-dev] [patch v6 10/10] tests: Enhance fragmentation tests.

2018-04-08 Thread Darrell Ball
Enhance fragmentation tests for userspace datapath. Signed-off-by: Darrell Ball --- tests/system-kmod-macros.at | 30 -- tests/system-traffic.at | 33 +++ tests/system-userspace-macros.at | 118 --- 3 files changed, 166 insertio

[ovs-dev] [patch v6 09/10] ipf: Enhance ipf_get_status.

2018-04-08 Thread Darrell Ball
A verbose option is added to dump the frag lists. Signed-off-by: Darrell Ball --- lib/ct-dpif.c | 24 + lib/ct-dpif.h | 4 +++ lib/dpctl.c | 35 +++-- lib/dpctl.man | 5 ++-- lib/dpif-netdev.c | 25 ++ lib/dpif-net