Re: [vpp-dev] Unable to build router plugin

2018-10-17 Thread Ni, Hongjun
Hi Carlito, We are working on porting VPPSB/netlink & router plugins into VPP main repo. Please see below patch, which is under review: https://gerrit.fd.io/r/#/c/15062/ Port VPPSB's rtnetlink & router plugin to VPP main repo I have tested this patch and it works well. Thanks, Hongjun

Re: [vpp-dev] Unable to build router plugin

2018-10-17 Thread carlito nueno
Hi Hongjun, Thanks for the patch. I tried to compile VPPSB project with the latest master and latest VPP stable/1810 but I am getting this error: Building router in /vpp/build-root/build-vpp_debug-native/router make[1]: Entering directory '/vpp/build-root/build-vpp_debug-native/router'

Re: [vpp-dev] vpp crash when handling IGMP with router alert

2018-10-17 Thread Jeff
Hi Neale, Thanks for response.  On a quick tangent, your comment about unnecessary work got me thinking about these lines at the top of ip4_local_check_src(): vnet_buffer (b)->ip.fib_index =     vnet_buffer (b)->sw_if_index[VLIB_TX] != ~0 ?     vnet_buffer (b)->sw_if_index[VLIB_TX] :

Re: [vpp-dev] meson build?

2018-10-17 Thread Burt Silverman
Indeed, it is time to take a break from redoing the build system - regardless of what is best, it has been through a lot of changes and come a long way. Taking a break from changing build systems, one can have time to pursue one of my favorite related things -- IWYU from Google --

Re: [vpp-dev] VPP and 100G Ethernet

2018-10-17 Thread via Lists.Fd.Io
Hi, Thanks Colin, Daniel for the useful feedback. -- Jordan > Hi, > > From our side, same experience with ConnectX5 if you can work through > DPDK/OFED dependencies. > > We also tested the Chelsio 100GE adapters using default DPDK and NAPATECH 2x > 100GE adapters with optimized DPDK drivers

Re: [vpp-dev] bug in api for tapv2

2018-10-17 Thread Marco Varlese
Thank you! On Wed, 2018-10-17 at 12:18 +, Michal Cmarada via Lists.Fd.Io wrote: > Hi Marco, > > Done: > https://gerrit.fd.io/r/#/c/15342/ > > Michal > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Michal Cmarada >

Re: [vpp-dev] bug in api for tapv2

2018-10-17 Thread Michal Cmarada via Lists.Fd.Io
Hi Marco, Done: https://gerrit.fd.io/r/#/c/15342/ Michal [https://www.cisco.com/c/dam/m/en_us/signaturetool/images/banners/standard/06_standard_graphic.png] Michal Cmarada Engineer - Software mcmar...@cisco.com Tel: Cisco Systems, Inc. Slovakia

Re: [vpp-dev] bug in api for tapv2

2018-10-17 Thread Marco Varlese
Hi Michal, On Wed, 2018-10-17 at 11:49 +, Michal Cmarada via Lists.Fd.Io wrote: > > > Hi VPP devs, > > > > I found a bug in API for tapv2. I prepared a fix but I need someone to check > it. > > > gerrit patch: https://gerrit.fd.io/r/#/c/15341/ > Yes, your fix makes sense to me. I am

[vpp-dev] bug in api for tapv2

2018-10-17 Thread Michal Cmarada via Lists.Fd.Io
Hi VPP devs, I found a bug in API for tapv2. I prepared a fix but I need someone to check it. gerrit patch: https://gerrit.fd.io/r/#/c/15341/ also it will probably need a cherry-pick to stable 18.10 Thanks Michal

Re: [vpp-dev] vpp 18.07.1 hangs on intel x520-sr2

2018-10-17 Thread Glaza
Investigating it further I have build 18.10-rc1 and than master. In both cases I got a crash dump in rte_eal_init. Bellow is BT from master: #0  0x7ff377882277 in raise () from /lib64/libc.so.6 #1  0x7ff377883968 in abort () from /lib64/libc.so.6 #2  0x0040817c in os_exit

[vpp-dev] VPP 18.10 RC2 milestone complete!!!

2018-10-17 Thread Marco Varlese
Dear all, I have created the v18.10-rc2 tag on stable/1810. VPP 18.10 Release Milestone RC2 is complete! As a reminder, the VPP 18.10 Final Release is in one week: Wednesday October 24, 2018. It is important that only bugs which address critical issues (as determined by the VPP committers),

Re: [vpp-dev] vapi recv error msg_id_name

2018-10-17 Thread Klement Sekera via Lists.Fd.Io
getting a message without sending one is probably because of keepalive messages, which vapi doesn't handle automatically in your version. newer versions support automatic handling of keepalive messages by supplying the appropriate parameter to vapi_connect to do so. regarding tunnel_if_index -

Re: [vpp-dev] vapi recv error msg_id_name

2018-10-17 Thread wangchuan...@163.com
one more question. Even if there was no vapi_send, I can get 0 from vapi_recv after sometime. why? sometime,vapi_vxlan_add_del'reply,retvalue=0,but the tunnel_if_index=0 which should be 6(got by cmd:show int) -- 发自我的网易邮箱手机智能版 在 2018-10-15 19:03:52,"Klement Sekera" 写道: >Hey, > >The reason

Re: [vpp-dev] vapi recv error msg_id_name

2018-10-17 Thread wangchuan...@163.com
Dear klement, thanks very very very very … much! i will try tomorrow! love you! -- 发自我的网易邮箱手机智能版 在 2018-10-15 19:03:52,"Klement Sekera" 写道: >Hey, > >The reason why your name doesn't match the request is related to your >code mixing vl_msg_id_t with vapi_msg_id_t. VPP internally assignes

Re: [vpp-dev] vpp crash when handling IGMP with router alert

2018-10-17 Thread Neale Ranns via Lists.Fd.Io
Hi Jeff, Thank you for the bug report. As you mention the graph node path taken by these packets does not go thru ip4-lookup and so does not have the fib-index set. Since ip4-lookup is replaced by ip4-options, IMO ip4-options would be the place to add the code you have identified, so that we