Re: [vpp-dev] stop handoff in SNAT

2017-07-20 Thread Yuliang Li
Thanks. That's a good point. But can I just use handoff on out2in? Because the in2out traffic is already split by RSS. On Wed, Jul 19, 2017 at 10:15 PM, Matus Fabian -X (matfabia - PANTHEON TECHNOLOGIES at Cisco) wrote: > Hi, > > > > You need handoff when running multithread

Re: [vpp-dev] [csit-dev] 17.07 Release

2017-07-20 Thread George Zhao
Bravo!!! -Original Message- From: vpp-dev-boun...@lists.fd.io [mailto:vpp-dev-boun...@lists.fd.io] On Behalf Of Dave Wallace Sent: Thursday, July 20, 2017 7:25 PM To: Neale Ranns (nranns); vpp-dev@lists.fd.io; csit-...@lists.fd.io Subject: Re: [vpp-dev] [csit-dev] 17.07 Release Most

Re: [vpp-dev] [csit-dev] 17.07 Release

2017-07-20 Thread Florin Coras
Awesome! Congrats to you and the whole community for all the hard work! Cheers, Florin > On Jul 20, 2017, at 4:56 PM, Neale Ranns (nranns) wrote: > > > Dear VPP community, > > The VPP 17.07 release is complete. The release artefacts are now available on > the nexus

Re: [vpp-dev] stop handoff in SNAT

2017-07-20 Thread Yuliang Li
I think I get the reason. If the flow space split is dynamic, each thread has to propagate the state across all threads when new flows come, which requires locking. Using static flow space split can avoid this, at the cost of handoff for both directions. On Thu, Jul 20, 2017 at 9:44 AM, Yuliang

Re: [vpp-dev] 17.07 Release

2017-07-20 Thread Luke, Chris
Woohoo! > -Original Message- > From: csit-dev-boun...@lists.fd.io [mailto:csit-dev-boun...@lists.fd.io] On > Behalf Of Neale Ranns (nranns) > Sent: Thursday, July 20, 2017 19:57 > To: vpp-dev@lists.fd.io; csit-...@lists.fd.io > Subject: [csit-dev] 17.07 Release > > > Dear VPP community,

[vpp-dev] 17.07 Release

2017-07-20 Thread Neale Ranns (nranns)
Dear VPP community, The VPP 17.07 release is complete. The release artefacts are now available on the nexus server. I’d like to take this opportunity to thank you all for your continued support for VPP. Best regards, Neale ___ vpp-dev mailing

Re: [vpp-dev] [csit-dev] 17.07 Release

2017-07-20 Thread Ed Warnicke
Many thanks to Neale for his hard work here :) Ed On Thu, Jul 20, 2017 at 4:56 PM, Neale Ranns (nranns) wrote: > > Dear VPP community, > > The VPP 17.07 release is complete. The release artefacts are now available > on the nexus server. > > I’d like to take this opportunity

Re: [vpp-dev] [csit-dev] 17.07 Release

2017-07-20 Thread Dave Wallace
Most Excellent! Thanks Neale and everyone who contributed to the VPP 17.07 release. -daw- On 07/20/2017 07:56 PM, Neale Ranns (nranns) wrote: Dear VPP community, The VPP 17.07 release is complete. The release artefacts are now available on the nexus server. I’d like to take this opportunity

Re: [vpp-dev] build 17.07 Release not successful

2017-07-20 Thread ted.y.liang
Dear all, I downloaded recently vpp 17.07 rc2 and tried to build it, but there are a lot of errors. I tried both “make build” and “make build-release”; Please see below: /root/vpp-17.07/build-data/../src/vpp/api/api_format.c:4642:6: error: unknown type name ‘vl_api_lldp_config_reply_t’

[vpp-dev] recipe for target 'vlib-find-source' failed

2017-07-20 Thread Divya Vyas
Hi, I am getting below error while cross-compiling VPP for thunder make pkg-deb PLATFORM=thunder Package vlib not found with path /home/cavium/Downloads/vpp Makefile:779: recipe for target 'vlib-find-source' failed make[2]: *** [vlib-find-source] Error 1 make[2]: Leaving directory

Re: [vpp-dev] stop handoff in SNAT

2017-07-20 Thread Matus Fabian -X (matfabia - PANTHEON TECHNOLOGIES at Cisco)
right and handoff is faster than locking Matus From: Yuliang Li [mailto:yuliang...@yale.edu] Sent: Friday, July 21, 2017 12:48 AM To: Matus Fabian -X (matfabia - PANTHEON TECHNOLOGIES at Cisco) Cc: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] stop handoff in SNAT I think I