[vpp-dev] dpdk plugin hqos deprecated

2020-08-31 Thread Bill Vaughan
Hi all, I am starting a new project and was hoping to take advantage of DPDK hqos in VPP 20.05 / 20.09. The hqos commands are missing from the dpdk plugin and I tracked it down to this 19.04 commit: https://github.com/FDio/vpp/commit/1a6ece34358a34367ff1807ac3a9a97b8a120b77#diff-32fe988f64b52745

[vpp-dev] fifo tuning callback issue

2020-11-11 Thread Bill Vaughan
Hi all, I am working on a custom VPP plugin and found what I think may be a bug in application_worker.c. I don't really have a question, just wanted to point this out in case it really is a bug. There is always a chance I am doing something wrong, but everything seems to be working fine with the f

Re: [vpp-dev] fifo tuning callback issue

2020-11-11 Thread Bill Vaughan
custom fifo tuning is required. > Would you be willing to push a patch or should I do it? > > Regards, > Florin > > > On Nov 11, 2020, at 10:33 AM, Bill Vaughan wrote: > > Hi all, > > I am working on a custom VPP plugin and found what I think may be a bug in

[vpp-dev] TCP debug macros

2020-11-22 Thread Bill Vaughan
Hi all, I am working on a project where I need to initiate TCP connections from the VPP session layer. In my overnight test runs I am seeing a TCP dispatch error that I am trying to track down. This happens after thousands of test runs. It looks like I am able to issue a Connect call but the SYN-A

Re: [vpp-dev] TCP debug macros

2020-11-22 Thread Bill Vaughan
I should have stated that I am running 2009. On Sun, Nov 22, 2020 at 8:48 AM Bill Vaughan via lists.fd.io wrote: > Hi all, > > I am working on a project where I need to initiate TCP connections from > the VPP session layer. In my overnight test runs I am seeing a TCP dispatch >

Re: [vpp-dev] TCP debug macros

2020-11-24 Thread Bill Vaughan
o, the client on the other end of the TCP connection is from Ubuntu 18.04. I am testing with ssh/scp/iperf3. Thanks, -Bill On Sun, Nov 22, 2020 at 1:24 PM Florin Coras wrote: > Hi Bill, > > Inline. > > On Nov 22, 2020, at 6:17 AM, Bill Vaughan wrote: > > I should have st

Re: [vpp-dev] TCP debug macros

2020-11-25 Thread Bill Vaughan
s them whenever events for > another group are enabled. > > Regards, > Florin > > [1] https://gerrit.fd.io/r/c/vpp/+/30116 > > On Nov 24, 2020, at 7:35 AM, Bill Vaughan wrote: > > Thanks for the feedback Florin. I am just now getting back to this. > > Perhaps I am do

[vpp-dev] vnet_connect() from workers

2021-02-05 Thread Bill Vaughan
Hi all, I have a need to call vnet_connect() from worker threads but the stack requires it to be called from the main thread. For some context, the project I am working on includes a TCP PEP (Performance Enhancing Proxy). A PEP can speed up TCP connections over high latency paths, such as satelli

Re: [vpp-dev] vnet_connect() from workers

2021-02-05 Thread Bill Vaughan
from your workers the main thread and in theory even get some > coalescing benefits as the connect requests accumulate in a queue. Did you > try that and hit performance limitations? > > Regards, > Florin > > > On Feb 5, 2021, at 6:14 AM, Bill Vaughan wrote: > > >