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
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 thr
_dir_path);
vec_free (huge_dir_path);
Could this be a problem in some scenarios ?
Is there a way to do some 'unlazy mount' here such that it is guaranteed before
moving forward that what is required has been done ?
Regards
Alok
-Original Message-
From: Damjan Marion
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:
&
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 ()
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): https://lists.fd.io/g/v
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 VP