Re: [vpp-dev] Libera IRC

2021-06-21 Thread Ray Kinsella
Thanks Vanessa! On 18/06/2021 16:41, Vanessa Valderrama wrote: > The Linux Foundation is moving from Freenode to Libera Chat. The FD.io TSC > approved the move and registered the #fdio and #fdio-meeting channels. If > your project requires an additional channel, please open a request at > suppo

Re: [vpp-dev] VPP host stack thread ownership #hoststack

2021-06-21 Thread Olivia Dunham
Hi Florin, Thank you for explaining. > > Out of curiosity, any particular reason why you’re looking into this? Are > you hitting any active open performance limitations with the latest > version of vpp? > While going through code for understanding, I wondered why it is being done this way rat

Re: [vpp-dev] VPP host stack thread ownership #hoststack

2021-06-21 Thread Florin Coras
Hi Olivia, Inline. > On Jun 21, 2021, at 12:51 AM, Olivia Dunham wrote: > > Hi Florin, > > Digging further into this, I got to know that only the main core handles > `vnet_connect`. The TCP connection is owned by main core while it is in > active open state. Yes, that’s accurate. > But

Re: [vpp-dev] VPP host stack thread ownership #hoststack

2021-06-21 Thread Olivia Dunham
Hi Florin, Digging further into this, I got to know that only the main core handles `vnet_connect`. The TCP connection is owned by main core while it is in active open state. But also I see that half open table as well as other data structures are properly locked. So will it be possible to hand

Re: [vpp-dev] VPP C++ Plugin API

2021-06-21 Thread Klement Sekera via lists.fd.io
Hi James, On vpp master branch running vpp like this: env STARTUP_CONF=/home/ksekera/startup.conf make debug with ksekera@c984e4769eef ~> cat startup.conf unix { interactive cli-listen /run/vpp/cli.sock gid 1000 } plugins { plugin dpdk_plugin.so { disable } } and your code ksekera@c984e47