Re: [vpp-dev] BFD sends old remote discriminator in its control packet after session goes to DOWN state #vpp

2020-01-19 Thread sontu mazumdar
Hi Klement, Thanks for the patch file. The fix works. Now I could see that once BFD session goes DOWN due to inactivity timer, remote discriminator is set 0 in BFD control packet. On Fri, Jan 17, 2020 at 3:37 PM Klement Sekera -X (ksekera - PANTHEON TECH SRO at Cisco) wrote: > Hi, > > thank

Re: [vpp-dev] [VCL] hoststack app crash with invalid memfd segment address

2020-01-19 Thread Florin Coras
Hi Hanlin, Thanks for confirming! Regards, Florin > On Jan 18, 2020, at 7:00 PM, wanghanlin wrote: > > Hi Florin, > With latest master code,the problem regarding 3) has been fixed. > > Thanks & Regards, > Hanlin > > > wanghanlin > > wanghan...@corp.netease.com > >

[vpp-dev] Coverity run FAILED as of 2020-01-19 14:00:54 UTC

2020-01-19 Thread Noreply Jenkins
Coverity run failed today. Current number of outstanding issues are 7 Newly detected: 0 Eliminated: 0 More details can be found at https://scan.coverity.com/projects/fd-io-vpp/view_defects -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15197):

Re: [vpp-dev] #vpp-hoststack - Issue with UDP receiver application using VCL library

2020-01-19 Thread Raj Kumar
Hi Florin, By using VCL library in an UDP receiver application, I am able to receive only 2 Mbps traffic. On increasing the traffic, I see Rx FIFO full error and application stopped receiving the traffic from the session layer. Whereas, with TCP I can easily achieve 15Gbps throughput without

Re: [vpp-dev] #vpp-hoststack - Issue with UDP receiver application using VCL library

2020-01-19 Thread Florin Coras
Hi Raj, The function used for receiving datagrams is limited to reading at most the length of a datagram from the rx fifo. UDP datagrams are mtu sized, so your reads are probably limited to ~1.5kB. On each epoll rx event try reading from the session handle in a while loop until you get an