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

2020-02-29 Thread 杨燚
Flavio, got it, thanks a lot. By the way, about too many retransmissions issue for veth, I did further investigation, I doubt it is also a veth-related bug on kernel side, maybe you Redhat kernel guys can help fix it, tap interface doesn't have this issue and it has super high performance

[ovs-dev] [PATCH] netdev-linux: Enable TSO in the TAP device.

2020-02-29 Thread Flavio Leitner
Use ioctl TUNSETOFFLOAD if kernel supports to enable TSO offloading in the tap device. Fixes: 29cf9c1b3b9c ("userspace: Add TCP Segmentation Offload support") Reported-by: "Yi Yang (杨�D)-云服务集团" Tested-by: William Tu Signed-off-by: Flavio Leitner --- lib/netdev-linux.c | 17 +

[ovs-dev] Is this your d...@openvswitch.org still active ??

2020-02-29 Thread Nelson Corey
I have tried to reach you on this d...@openvswitch.org mail account severally but I have gotten no response from you, Please get back to me at your earliest convenience if you have received my email this time. Sincerely, Nelson C. ___ dev mailing

Re: [ovs-dev] [PATCH] ofproto-dpif: Only delete tunnel backer ports along with the dpif.

2020-02-29 Thread Ben Pfaff
Also: I applied this to master. On Sat, Feb 29, 2020 at 11:06:54AM -0800, Ben Pfaff wrote: > Thanks for testing! > > I'm a little surprised that restarting ovs-vswitchd causes the interface > to be deleted and recreated. That might be a bug that should be > addressed separately. > > On Sat,

Re: [ovs-dev] Re:[PATCH 2/2] ofproto: Do not delete datapath flows on exit by default

2020-02-29 Thread Ben Pfaff
I applied this to master. On Sat, Feb 29, 2020 at 10:59:37AM -0800, Ben Pfaff wrote: > Thanks for testing. > > I think that the "destroy" call should be outside the braces; the simap > does not "own" the ports, it's just an string-to-integer map that needs > to get destroyed along with the

Re: [ovs-dev] [PATCH] ofproto-dpif: Only delete tunnel backer ports along with the dpif.

2020-02-29 Thread Ben Pfaff
Thanks for testing! I'm a little surprised that restarting ovs-vswitchd causes the interface to be deleted and recreated. That might be a bug that should be addressed separately. On Sat, Feb 29, 2020 at 12:16:32AM +, Antonin Bas wrote: > Hi Ben, > > Thanks for the patch. I can confirm that

Re: [ovs-dev] Re:[PATCH 2/2] ofproto: Do not delete datapath flows on exit by default

2020-02-29 Thread Ben Pfaff
Thanks for testing. I think that the "destroy" call should be outside the braces; the simap does not "own" the ports, it's just an string-to-integer map that needs to get destroyed along with the ofproto. On Sat, Feb 29, 2020 at 10:26:42AM +0800, txfh2007 wrote: > Hi Ben: > > I have tried,