Re: [vpp-dev] VPP project committer nomination: Sergio Gonzales Monroy

2017-03-27 Thread Keith Burns
+1 On Mar 27, 2017 4:12 AM, "Damjan Marion (damarion)" wrote: Hello VPP committers, I would like to nominate Sergio Gonzales Monroy as a VPP project committer. History of Sergio’s merged contributions to the VPP project:

Re: [vpp-dev] Building router plugin

2017-03-27 Thread Ed Warnicke
You might also look at https://gerrit.fd.io/r/#/c/5004/ - which introduces memif interfaces... which I think Damjan eventually wants a library for so that you could use them for things like taps for routing protocol packets... Ed On Mon, Mar 27, 2017 at 2:43 PM, Łukasz Chrustek

Re: [vpp-dev] Building router plugin

2017-03-27 Thread Łukasz Chrustek
Hi, Ok, thank You. I will give a try with earlier version of vpp, as Jeff suggests. I have running netlink plugin, but as Ole wrote - most important is router plugin. Cheers, Luk >> You basically have two options: >> 1. Teach your routing protocol daemon to directly talk to VPP for >>

Re: [vpp-dev] VPP build issue on Ubuntu 16.04.2 LTS

2017-03-27 Thread Jon Loeliger
On Mon, Mar 27, 2017 at 12:41 PM, Dumitrescu, Cristian < cristian.dumitre...@intel.com> wrote: > Hi guys, > > > > Any idea why am I getting this error: > > > > >make bootstrap > > … > > checking for python... /usr/bin/python > > checking for python version... 2.7 > > checking for python

Re: [vpp-dev] vpp-plugins RPM dependency

2017-03-27 Thread Thomas F Herbert
Damjan, Thanks! On 03/24/2017 12:34 PM, Damjan Marion (damarion) wrote: On 23 Mar 2017, at 14:26, Thomas F Herbert > wrote: On 03/22/2017 04:36 PM, Feng Pan wrote: So this would suggest that VPP by default (that is, by doing 'yum install

Re: [vpp-dev] CFP for fd.io Minisummit at OpenStack Summit, Monday, May 8 Boston

2017-03-27 Thread Ed Warnicke
Apologies, the last email was sent prematurely, the link to information and to the CFP form to submit talks is here: https://fd.io/news/events/2017-05-08/fdio-mini-summit-open-stack-boston-may-8th On Mon, Mar 27, 2017 at 11:09 AM, Ed Warnicke wrote: > fd.io is having a

[vpp-dev] VPP build issue on Ubuntu 16.04.2 LTS

2017-03-27 Thread Dumitrescu, Cristian
Hi guys, Any idea why am I getting this error: >make bootstrap ... checking for python... /usr/bin/python checking for python version... 2.7 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.7/site-packages checking for python extension module

Re: [vpp-dev] VPP project committer nomination: Sergio Gonzales Monroy

2017-03-27 Thread Florin Coras
+1 Florin > On Mar 27, 2017, at 4:12 AM, Damjan Marion (damarion) > wrote: > > > Hello VPP committers, > > I would like to nominate Sergio Gonzales Monroy as a VPP project committer. > > History of Sergio’s merged contributions to the VPP project: > >

Re: [vpp-dev] Strange C Dyanmic Loading Failure

2017-03-27 Thread Jon Loeliger
On Mon, Mar 27, 2017 at 9:27 AM, Adrian Daniel Calianu < adrian.cali...@gmail.com> wrote: > Hi all, > > I have the same issue. After I built the vpp from sources(master branch) > and run vppctl I see a segmentation fault. This looks to be caused by the > fact that the vlib_mains from init

Re: [vpp-dev] 5798: Simple patch to add checking for deps for RPMs

2017-03-27 Thread Damjan Marion (damarion)
Traveling last week, still processing backlog. Merged… Thanks…. On 27 Mar 2017, at 16:29, Thomas F Herbert > wrote: What is the outlook for this patch: https://gerrit.fd.io/r/#/c/5798/ Patch set 2 was submitted on 3/21 to address Damjan's

Re: [vpp-dev] Strange C Dyanmic Loading Failure

2017-03-27 Thread Dave Barach (dbarach)
Guys, We’re not going to revert that patch. I strongly suspect that the problem is due to stale bits installed on the host. Please check your system against this result: $ ldd /usr/bin/vpp_api_test linux-vdso.so.1 => (0x7fff69357000) libvlibmemoryclient.so.0 =>

[vpp-dev] 5798: Simple patch to add checking for deps for RPMs

2017-03-27 Thread Thomas F Herbert
What is the outlook for this patch: https://gerrit.fd.io/r/#/c/5798/ Patch set 2 was submitted on 3/21 to address Damjan's comments. --Tom -- *Thomas F Herbert* SDN Group Office of Technology *Red Hat* ___ vpp-dev mailing list vpp-dev@lists.fd.io

Re: [vpp-dev] Strange C Dyanmic Loading Failure

2017-03-27 Thread Adrian Daniel Calianu
Hi all, I have the same issue. After I built the vpp from sources(master branch) and run vppctl I see a segmentation fault. This looks to be caused by the fact that the vlib_mains from init functions of dynamic linked libraries is 0x0. Following patch will fix the problem: ---

Re: [vpp-dev] VPP API Test Crash - Need help debugging

2017-03-27 Thread Dave Barach (dbarach)
Dear Billy, Looks like a stale tree... vm = vlib_mains[os_get_cpu_number ()] from within vpp_api_test was always a mistake. I cleaned this up a while ago. Vpp_api_test was spuriously linked against libvlib.so, leading to this very crash in vpp_api_test until I cleaned up the set of libraries,

[vpp-dev] VPP API Test Crash - Need help debugging

2017-03-27 Thread Billy McFall
I have screwed up my system and need some help fixing. Long email because of the traces, so quick summary up front. I was playing with pluggins and had some notes from over the summer on running the MacSwap pluggin. I downloaded the code via: git clone https://github.com/alagalah/macswap-plugin

Re: [vpp-dev] VPP project committer nomination: Sergio Gonzales Monroy

2017-03-27 Thread otroan
+1. Best regards, Ole > On 27 Mar 2017, at 06:12, Damjan Marion (damarion) wrote: > > > Hello VPP committers, > > I would like to nominate Sergio Gonzales Monroy as a VPP project committer. > > History of Sergio’s merged contributions to the VPP project: > >

Re: [vpp-dev] Building router plugin

2017-03-27 Thread Pierre Pfister (ppfister)
You basically have two options: 1. Teach your routing protocol daemon to directly talk to VPP for configuring the FIB. 2. Do not modify the routing daemon and let VPP map routes written in the kernel. For 1, you will need the router plugin, but for packet punting only. For 2., you will need

[vpp-dev] VPP project committer nomination: Sergio Gonzales Monroy

2017-03-27 Thread Damjan Marion (damarion)
Hello VPP committers, I would like to nominate Sergio Gonzales Monroy as a VPP project committer. History of Sergio’s merged contributions to the VPP project: https://gerrit.fd.io/r/#/q/owner:sergio.gonzalez.monroy%2540intel.com+status:merged shows significant amount of work done on VPP