Re: [vpp-dev] vppctl makes VPP hang-up occasionally

2019-07-10 Thread Chris Luke
Sure, and in 99.99% of cases nobody would ever notice, too. For the curious, the most straightforward way to tickle this particular feature is something like “socat /run/vpp/cli.sock stdio” to get a CLI connection without any TELNET negotiation; there’s a ~1s pause while VPP waits for the

Re: [vpp-dev] vppctl makes VPP hang-up occasionally

2019-07-10 Thread Dave Barach via Lists.Fd.Io
+1, commenting out the timer_call(...) was a quick hack to make the pain go away... From: Luke, Chris Sent: Wednesday, July 10, 2019 4:55 PM To: Dave Barach (dbarach) ; Yusuke Tatsumi ; vpp-dev@lists.fd.io Subject: RE: vppctl makes VPP hang-up occasionally For the archives,

Re: [vpp-dev] vppctl makes VPP hang-up occasionally

2019-07-10 Thread Chris Luke
For the archives, https://gerrit.fd.io/r/#/c/20573/ was merged earlier to resolve this issue. We are hoping Tatsumi is able to confirm this, but since it is a better approach regardless. Chris. From: vpp-dev@lists.fd.io On Behalf Of Dave Barach via Lists.Fd.Io Sent: Tuesday, July 9, 2019

Re: [vpp-dev] VPP api python scripts in packages for out-of-tree VPP plugins.

2019-07-10 Thread Vratko Polak -X (vrpolak - PANTHEON TECHNOLOGIES at Cisco) via Lists.Fd.Io
Adding vpp-dev, as I am not sure who reads vpp-api-dev. Here [0] is my attempt at a simple solution. Vratko. [0] https://gerrit.fd.io/r/20595 From: vpp-api-...@lists.fd.io On Behalf Of Luca Muscariello via Lists.Fd.Io Sent: Tuesday, 2019-July-09 15:56 To: vpp-api-...@lists.fd.io;

Re: [vpp-dev] pool_get_aligned causing crash

2019-07-10 Thread Damjan Marion via Lists.Fd.Io
> On 10 Jul 2019, at 17:29, hari_akkin via Lists.Fd.Io > wrote: > > Hi Damjan, > > Below is the backtrace > 0x750124d5 in __memset_avx2_unaligned_erms () from /lib64/libc.so.6 > (gdb) bt > #0 0x750124d5 in __memset_avx2_unaligned_erms () from > /lib64/libc.so.6 > #1

Re: [vpp-dev] pool_get_aligned causing crash

2019-07-10 Thread hari_akkin via Lists.Fd.Io
Hi Damjan, Below is the backtrace 0x750124d5 in __memset_avx2_unaligned_erms () from /lib64/libc.so.6 (gdb) bt #0  0x750124d5 in __memset_avx2_unaligned_erms () from /lib64/libc.so.6 #1  0x75dc1571 in mspace_put (msp=0x7fffb4c8e010, p_arg=0x7fffb5e76d88) at

[vpp-dev] VOM packaging for sweetcomb

2019-07-10 Thread Yohan Pipereau (ypiperea) via Lists.Fd.Io
Hi, I am working for sweetcomb project and as discussed during yesterday VPP weekly meeting we are trying to make changes to rely on VOM to configure VPP. In 19.01 and before, VOM was packaged as part of vpp-dev and it has been removed from vpp-dev in 19.04. (I guess for the same reasons as

[vpp-dev] pool_get_aligned causing crash

2019-07-10 Thread hari_akkin via Lists.Fd.Io
Hi All, We are seeing a crash when we try to get second object from pool_get_aligned(), for a specific vector. If we do pre-allocation of the pool with specific number (using pool_alloc_aligned), then the object allocation is getting successful until that number and crashes for next object.