[vpp-dev] query regarding multiple client connections to vpp over shared memory

2019-02-28 Thread Alok Makhariya
Hi I am trying to connect 2 clients to vpp using vapi-connect from the same process but unable to do so. The second vapi-connect returns with an error. I wanted to have 2 connection to vpp because I intend to use the first connection for a high priority exchange of request and response messages

[vpp-dev] Query regarding VLIB macro

2019-02-05 Thread Alok Makhariya
Hi, I see that I can use the following macro's inside my VPP plugin so that the corresponding functions are called. VLIB_EARLY_CONFIG_FUNCTION VLIB_CONFIG_FUNCTION VLIB_INIT_FUNCTION I wanted to know in what sequence will the functions be called in the main thread if I define all the above

Re: [vpp-dev] Regarding page table address NULL in dpdk_pool_create

2018-11-26 Thread Alok Makhariya
such that it is guaranteed before moving forward that what is required has been done ? Regards Alok -Original Message- From: Damjan Marion Sent: 23 November 2018 15:03 To: Alok Makhariya Cc: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] Regarding page table address NULL in dpdk_pool_create

Re: [vpp-dev] Regarding page table address NULL in dpdk_pool_create

2018-11-23 Thread Alok Makhariya
Thanks Damjan. Regards Alok -Original Message- From: Damjan Marion Sent: 23 November 2018 15:03 To: Alok Makhariya Cc: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] Regarding page table address NULL in dpdk_pool_create > > On 22 Nov 2018, at 10:55, Alok Makhariya wrote: &

[vpp-dev] Regarding page table address NULL in dpdk_pool_create

2018-11-22 Thread Alok Makhariya
Hi I have a situation where in some scenarios when VPP is restarted after a crash, the VPP which is coming up itself crashes with the following backtrace. This does not happen always. Any hints on what could cause this would be appreciated. Backtrace (gdb) bt #0 0x2b688139c207 in raise

[vpp-dev] Query regarding cli function handler

2018-10-09 Thread Alok Makhariya
I am writing cli handler. Is there any stack limit for cli function handler ? What will happen if I define a large local variable inside function handler ? Thanks Alok -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#10774):

[vpp-dev] Query regarding CLI handling

2018-10-03 Thread Alok Makhariya
Hi In one of our VPP plugin, we have CLI's which is used to display some info and this is time consuming. Thus the main thread, which is busy doing the above, cannot interact with the control plane which interacts with the main thread over the shared memory interface for this duration. Does