Re: [vpp-dev] assert in pool_elt_at_index

2021-10-22 Thread Neale Ranns
Hi Stanislav, I see no smoking guns :( The only cause I can think of is that when a load-balance is returned to the pool, the pool’s bitmap of free indicies may expand, which would confuse readers/workers. But I don’t see any of your threads having just pool_put a load-balance. Since you

[vpp-dev] Bandwidth throttling (aka traffic control) on the VLANs

2021-10-22 Thread Andre Courchesne
Hi all,We are getting started with FD.io and so far we have our basic routing and VLAN working but we need to be able to add bandwidth throttling on the VLANs.We tried various examples (using the policier) we found on mailing lists and posts with no success.Any hints

Re: [vpp-dev] assert in pool_elt_at_index

2021-10-22 Thread Stanislav Zaikin
Hi Neale, Sure, here it is: https://gist.github.com/zstas/c2316d4e95a84fa28f0e0be00eb6fb19 Thanks in advance. On Fri, 22 Oct 2021 at 09:55, Neale Ranns wrote: > Hi Stanislav, > > > > Can you do: > > thread apply all bt > > I’d like to see what the other threads are doing. > > > > /neale > >

Re: [vpp-dev] Does memif zero-copy work ?

2021-10-22 Thread Satya Murthy
Thanks MJ for the quick reply. Will try this and check. -- Thanks & Regards, Murthy -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#20360): https://lists.fd.io/g/vpp-dev/message/20360 Mute This Topic: https://lists.fd.io/mt/86509719/21656 Group

Re: [vpp-dev] Does memif zero-copy work ?

2021-10-22 Thread Mrityunjay Kumar
On Fri, 22 Oct, 2021, 2:44 pm Satya Murthy, wrote: > Hi VPP experts, > > We are using memif for communication between an APP and VPP. > We recently tried moving to zero-copy memif based on the > example icmp_responder-zero-copy-slave. > > This example shows the code for the APP being in SLAVE

[vpp-dev] Does memif zero-copy work ?

2021-10-22 Thread Satya Murthy
Hi VPP experts, We are using memif for communication between an APP and VPP. We recently tried moving to zero-copy memif based on the example  icmp_responder-zero-copy-slave. This example shows the code for the APP being in SLAVE mode. So, to go along with this, we made VPP as memif-MASTER and

Re: [vpp-dev] assert in pool_elt_at_index

2021-10-22 Thread Neale Ranns
Hi Stanislav, Can you do: thread apply all bt I’d like to see what the other threads are doing. /neale From: vpp-dev@lists.fd.io on behalf of Stanislav Zaikin via lists.fd.io Date: Wednesday, 13 October 2021 at 20:30 To: vpp-dev Subject: [vpp-dev] assert in pool_elt_at_index Hello folks,