[vpp-dev] How to compile VPP with external(prebuilt) DPDK #vpp

2019-09-17 Thread Jaemin Park
Hello, I'd like to compile VPP(ver. 20.01) by using external (prebuilt & installed) DPDK. However, it seems that some configurations such as vpp_dpdk_inc_dir and others are removed since cmake is used in VPP. *Is there any way to use external DPDK for compiling VPP(ver. 20.01)?* The followings

Re: [vpp-dev] A method to measure the allocated memory size for IKE SA

2019-08-19 Thread Jaemin Park
are vectors, so you cal use vl() helper in gdb to get length. > I.e. > > (gdb) p sizeof (ikev2_rekey_t) * vl(my_ikev2_struct.rekey) > > > > On 13 Aug 2019, at 13:30, Jaemin Park wrote: > > The invocation of sizeof() does not cover the whole allocated memory for > IKE S

Re: [vpp-dev] A method to measure the allocated memory size for IKE SA

2019-08-13 Thread Jaemin Park
The invocation of sizeof() does not cover the whole allocated memory for IKE SA. That structure has the pointers of other nested structures, the pointers of keys and so on. 2019년 8월 13일 (화) 오후 7:38, Damjan Marion 님이 작성: > > > > On 13 Aug 2019, at 05:01, jmpar...@gmail.com wrote: > > > > Hi, all >